mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-15 00:11:26 +00:00
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
|