GameLogic - Merge with sprint2.5
This commit is contained in:
commit
386b27e2f7
|
@ -8,7 +8,7 @@ using namespace GameLogic;
|
|||
using namespace Oyster::Physics;
|
||||
|
||||
Player::Player()
|
||||
:Object(CollisionManager::PlayerCollision, OBJECT_TYPE::OBJECT_TYPE_PLAYER)
|
||||
:DynamicObject(CollisionManager::PlayerCollision, OBJECT_TYPE::OBJECT_TYPE_PLAYER)
|
||||
{
|
||||
weapon = new Weapon();
|
||||
|
||||
|
|
|
@ -6,15 +6,14 @@
|
|||
|
||||
#include "GameLogicStates.h"
|
||||
#include "OysterMath.h"
|
||||
#include "Object.h"
|
||||
#include "DynamicObject.h"
|
||||
|
||||
|
||||
namespace GameLogic
|
||||
{
|
||||
class Weapon;
|
||||
class Player : public Object
|
||||
class Player : public DynamicObject
|
||||
{
|
||||
|
||||
public:
|
||||
Player(void);
|
||||
~Player(void);
|
||||
|
|
Loading…
Reference in New Issue