FossilOrigin-Name: 7a98b92af94db34093428fc95da00435311c270d74135e69aa94bca16871a023
16 lines
404 B
Objective-C
16 lines
404 B
Objective-C
#import <ObjFW/ObjFW.h>
|
|
|
|
#import "cube.h"
|
|
|
|
// server side version of "dynent" type
|
|
OF_DIRECT_MEMBERS
|
|
@interface Client: OFObject
|
|
@property (nonatomic) int type;
|
|
@property (nonatomic) ENetPeer *peer;
|
|
@property (copy, nonatomic) OFString *hostname;
|
|
@property (copy, nonatomic) OFString *mapvote;
|
|
@property (copy, nonatomic) OFString *name;
|
|
@property (nonatomic) int modevote;
|
|
|
|
+ (instancetype)client;
|
|
@end
|