Differences From Artifact [f3375dc858]:
- File src/Projectile.h — part of check-in [d2b3ff790f] at 2025-03-09 18:57:42 on branch trunk — Convert dynent to a class (user: js, size: 276) [annotate] [blame] [check-ins using]
To Artifact [03669c69fe]:
- File src/Projectile.h — part of check-in [89fbd7a152] at 2025-03-20 13:21:56 on branch trunk — Make more use of convenience methods (user: js, size: 305) [annotate] [blame] [check-ins using]
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 |