mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
9ac6929cf7
This one actually would compile if object files were working.
13 lines
152 B
Objective-C
13 lines
152 B
Objective-C
#ifndef __Weapon_h
|
|
#define __Weapon_h
|
|
|
|
#include "Entity.h"
|
|
|
|
@protocol Weapon
|
|
|
|
- (void) setOwner: (Entity *)o;
|
|
- (void) fire;
|
|
|
|
@end
|
|
|
|
#endif //__Weapon_h
|