mirror of
https://github.com/ProjectDreamland/area51.git
synced 2024-11-01 03:01:49 +01:00
24 lines
495 B
C++
24 lines
495 B
C++
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Player.hpp
|
|
//
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "Object.hpp"
|
|
|
|
|
|
class player : public object
|
|
{
|
|
public:
|
|
virtual type GetType ( void ) const { return TYPE_PLAYER; } // Returns the type of the object
|
|
virtual const char* GetTypeName ( void ) const { return "PLAYER"; }; // Gets the type name
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
};
|