Cube  Diff

Differences From Artifact [f3375dc858]:

To Artifact [03669c69fe]:


1
2
3
4
5
6
7
8
9
10


11
1
2
3
4
5
6
7
8
9
10
11
12
13










+
+

#import <ObjFW/ObjFW.h>

@class DynamicEntity;

@interface Projectile: OFObject
@property (nonatomic) OFVector3D o, to;
@property (nonatomic) float speed;
@property (nonatomic) DynamicEntity *owner;
@property (nonatomic) int gun;
@property (nonatomic) bool inuse, local;

+ (instancetype)projectile;
@end