MULTIPLAYER
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#ifndef Player_h__
|
||||
#define Player_h__
|
||||
|
||||
#include "Component.h"
|
||||
|
||||
namespace Components
|
||||
{
|
||||
|
||||
struct Player : Component
|
||||
{
|
||||
Player()
|
||||
: ID(0) { }
|
||||
|
||||
int ID;
|
||||
|
||||
virtual Player* Clone() const override { return new Player(*this); }
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // Player_h__
|
||||
Reference in New Issue
Block a user