mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 13:41:32 +00:00
75ec6bf244
This is a nasty commit, sorry, but 99% of the commit is interdependent.
18 lines
200 B
Objective-C
18 lines
200 B
Objective-C
#ifndef __Axe_h
|
|
#define __Axe_h
|
|
|
|
#include "Object.h"
|
|
#include "Entity.h"
|
|
#include "Weapon.h"
|
|
|
|
@interface Axe: Object <Weapon>
|
|
{
|
|
Entity[] owner;
|
|
float damage;
|
|
}
|
|
|
|
- (id) init;
|
|
|
|
@end
|
|
|
|
#endif //__Axe_h
|