Differences From Artifact [902fed7b64]:
- File src/Projectile.m — part of check-in [d3b4b2d476] at 2025-03-09 11:24:01 on branch trunk — Migrate projectile to a class (user: js, size: 56) [annotate] [blame] [check-ins using]
To Artifact [f2a969a0fa]:
- File src/Projectile.m — part of check-in [89fbd7a152] at 2025-03-20 13:21:56 on branch trunk — Make more use of convenience methods (user: js, size: 116) [annotate] [blame] [check-ins using]
1 2 3 4 | #import "Projectile.h" @implementation Projectile @end | > > > > | 1 2 3 4 5 6 7 8 | #import "Projectile.h" @implementation Projectile + (instancetype)projectile { return [[self alloc] init]; } @end |