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