12 lines
183 B
C++
12 lines
183 B
C++
#ifndef Components_Template_h__
|
|
#define Components_Template_h__
|
|
|
|
#include "Component.h"
|
|
|
|
namespace Components
|
|
{
|
|
|
|
struct Template : Component { };
|
|
|
|
}
|
|
#endif // !Components_Template_h__
|