Cube  Entity.h at [85566b261d]

File src/Entity.h artifact 0c6f848420 part of check-in 85566b261d


#import <ObjFW/ObjFW.h>

// map entity
@interface Entity: OFObject
@property (nonatomic) short x, y, z; // cube aligned position
@property (nonatomic) short attr1;
@property (nonatomic) unsigned char type; // type is one of the above
@property (nonatomic) unsigned char attr2, attr3, attr4;
@property (nonatomic) bool spawned;

+ (instancetype)entity;
@end