area51/Scratch/CS/ObjectTest/Player.hpp
Andrew Sampson 431f72b93a source
2021-08-27 19:22:41 -07:00

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:
};