mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
14 lines
150 B
C
14 lines
150 B
C
|
#ifndef __Weapon_h
|
||
|
#define __Weapon_h
|
||
|
|
||
|
#include "Entity.h"
|
||
|
|
||
|
@protocol Weapon
|
||
|
|
||
|
- (void) setOwner: (Entity)o;
|
||
|
- (void) fire;
|
||
|
|
||
|
@end
|
||
|
|
||
|
#endif //__Weapon_h
|