mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 08:27:39 +00:00
bbaaaae81c
of qfcc. doesn't do much yet.
15 lines
170 B
Objective-C
15 lines
170 B
Objective-C
#ifndef __axe_h
|
|
#define __axe_h
|
|
|
|
#include "entity.h"
|
|
#include "weapon.h"
|
|
|
|
@interface Axe : Object <Weapon>
|
|
{
|
|
Entity owner;
|
|
float damage;
|
|
}
|
|
-init;
|
|
@end
|
|
|
|
#endif//__axe_h
|