File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Ch.04/Ape-CompnentEntotySystem
src/main/java/org/example/game Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -226,11 +226,11 @@ public class World {
226
226
// Entity 배치
227
227
GameObject ape = EntityGenerator . generateEntity(" 에이프" );
228
228
GameObject jinny = EntityGenerator . generateEntity(" 지니" );
229
- GameObject iireen = EntityGenerator . generateEntity(" 이린" );
229
+ GameObject iirin = EntityGenerator . generateEntity(" 이린" );
230
230
GameObject gamja = EntityGenerator . generateEntity(" 감자" );
231
231
gameObjects. add(ape);
232
232
gameObjects. add(jinny);
233
- gameObjects. add(iireen );
233
+ gameObjects. add(iirin );
234
234
gameObjects. add(gamja);
235
235
236
236
CompletableFuture ageSystemLauncher = CompletableFuture . runAsync(() - > {
@@ -260,11 +260,11 @@ ArrayList<GameObject> gameObjects = new ArrayList<>();
260
260
261
261
GameObject ape = EntityGenerator . generateEntity(" 에이프" );
262
262
GameObject jinny = EntityGenerator . generateEntity(" 지니" );
263
- GameObject iireen = EntityGenerator . generateEntity(" 이린" );
263
+ GameObject iirin = EntityGenerator . generateEntity(" 이린" );
264
264
GameObject gamja = EntityGenerator . generateEntity(" 감자" );
265
265
gameObjects. add(ape);
266
266
gameObjects. add(jinny);
267
- gameObjects. add(iireen );
267
+ gameObjects. add(iirin );
268
268
gameObjects. add(gamja);
269
269
```
270
270
Original file line number Diff line number Diff line change @@ -26,11 +26,11 @@ public void initGame() throws ExecutionException, InterruptedException {
26
26
// Entity 배치
27
27
GameObject ape = EntityGenerator .generateEntity ("에이프" );
28
28
GameObject jinny = EntityGenerator .generateEntity ("지니" );
29
- GameObject iireen = EntityGenerator .generateEntity ("이린" );
29
+ GameObject iirin = EntityGenerator .generateEntity ("이린" );
30
30
GameObject gamja = EntityGenerator .generateEntity ("감자" );
31
31
gameObjects .add (ape );
32
32
gameObjects .add (jinny );
33
- gameObjects .add (iireen );
33
+ gameObjects .add (iirin );
34
34
gameObjects .add (gamja );
35
35
36
36
CompletableFuture ageSystemLauncher = CompletableFuture .runAsync (() -> {
You can’t perform that action at this time.
0 commit comments