Differences From Artifact [54155c553d]:
- File src/Entity.m — part of check-in [4b002822f9] at 2025-03-20 16:04:35 on branch trunk — Convert entity to a class (user: js, size: 48) [annotate] [blame] [check-ins using]
To Artifact [aab70a6ce9]:
- File src/Entity.m — part of check-in [0e7605d101] at 2025-03-20 22:40:48 on branch trunk — Fix all warnings (user: js, size: 104) [annotate] [blame] [check-ins using]
1 2 3 4 | #import "Entity.h" @implementation Entity @end | > > > > | 1 2 3 4 5 6 7 8 | #import "Entity.h" @implementation Entity + (instancetype)entity { return [[self alloc] init]; } @end |