21 lines
180 B
C
21 lines
180 B
C
|
#ifndef WEAPON_H
|
||
|
#define WEAPON_H
|
||
|
|
||
|
#include "Object.h"
|
||
|
|
||
|
namespace GameLogic
|
||
|
{
|
||
|
|
||
|
class Weapon : public Object
|
||
|
{
|
||
|
|
||
|
public:
|
||
|
Weapon(void);
|
||
|
~Weapon(void);
|
||
|
|
||
|
private:
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
#endif
|