Cube/src/Entity.h
Jonathan Schleifer d42f82f1ec Convert entity to a class
FossilOrigin-Name: 4b002822f954056510cbb1f85d7687784e26782f63c5995f01ac6488d0632d80
2025-03-20 16:04:35 +00:00

5 lines
149 B
Objective-C

#import "PersistentEntity.h"
@interface Entity: PersistentEntity
@property (nonatomic) bool spawned; // the only dynamic state of a map entity
@end