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.
18 lines
199 B
Objective-C
18 lines
199 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
|