Components + almost AABB
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#ifndef Model_h__
|
||||
#define Model_h__
|
||||
|
||||
#include "Component.h"
|
||||
#include "Color.h"
|
||||
|
||||
namespace Components
|
||||
{
|
||||
|
||||
struct Model : Component
|
||||
{
|
||||
std::string ModelName;
|
||||
Color color;
|
||||
};
|
||||
REGISTER_COMPONENT("Model", Model);
|
||||
|
||||
}
|
||||
#endif // !Model_h__
|
||||
Reference in New Issue
Block a user