Danbias/Code/Game/GameLogic/IAttatchment.h

32 lines
460 B
C
Raw Normal View History

//////////////////////////////////////////////////
//Created by Erik of the GameLogic team
//////////////////////////////////////////////////
#ifndef IATTATCHMENT_H
#define IATTATCHMENT_H
#include "GameLogicStates.h"
#include "Player.h"
namespace GameLogic
{
class IAttatchment
{
public:
IAttatchment(void);
~IAttatchment(void);
2014-01-16 11:17:19 +01:00
virtual void UseAttatchment(const WEAPON_FIRE &usage) = 0;
private:
protected:
Player *owner;
};
}
#endif