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