mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
bbaaaae81c
of qfcc. doesn't do much yet.
11 lines
130 B
Objective-C
11 lines
130 B
Objective-C
#ifndef __weapon_h
|
|
#define __weapon_h
|
|
|
|
#include "entity.h"
|
|
|
|
@protocol Weapon
|
|
-setOwner:(Entity)o;
|
|
-fire;
|
|
@end
|
|
|
|
#endif//__weapon_h
|