FossilOrigin-Name: 7a98b92af94db34093428fc95da00435311c270d74135e69aa94bca16871a023
10 lines
220 B
Objective-C
10 lines
220 B
Objective-C
#import <ObjFW/ObjFW.h>
|
|
|
|
// server side version of "entity" type
|
|
OF_DIRECT_MEMBERS
|
|
@interface ServerEntity: OFObject
|
|
@property (nonatomic) bool spawned;
|
|
@property (nonatomic) int spawnsecs;
|
|
|
|
+ (instancetype)entity;
|
|
@end
|