diff --git a/.gitignore b/.gitignore index d39b691..76e5d1f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,8 @@ .dub .DS_Store +bin/ +__internal/ +lib/ +*.lib +*.a +*.dll diff --git a/lesson#26 - Drawing a player/ourGame/source/game/data.d b/lesson#26 - Drawing a player/ourGame/source/game/data.d index f395ef9..0faa423 100644 --- a/lesson#26 - Drawing a player/ourGame/source/game/data.d +++ b/lesson#26 - Drawing a player/ourGame/source/game/data.d @@ -40,6 +40,9 @@ class Entity { void draw() { DrawTextureRec(texture, frame, position, Colors.WHITE); } + + abstract void update(); + abstract void processEvents(); } diff --git a/lesson#26 - Drawing a player/ourGame/source/game/play.d b/lesson#26 - Drawing a player/ourGame/source/game/play.d index 0a53a93..7cb7890 100644 --- a/lesson#26 - Drawing a player/ourGame/source/game/play.d +++ b/lesson#26 - Drawing a player/ourGame/source/game/play.d @@ -2,7 +2,6 @@ module game.play; import game.data; import game.gstatemanager; - import game.player; import std.file: getcwd; @@ -10,6 +9,7 @@ import std.path: buildPath; import std.string: toStringz; class Play: IState { + // variables private { Texture2D texPlayer; Player player; diff --git a/lesson#26 - Drawing a player/ourGame/source/game/player.d b/lesson#26 - Drawing a player/ourGame/source/game/player.d index e96479e..53f62b6 100644 --- a/lesson#26 - Drawing a player/ourGame/source/game/player.d +++ b/lesson#26 - Drawing a player/ourGame/source/game/player.d @@ -7,9 +7,8 @@ class Player: Entity { super(texture, frame, position); } - /*override void update() { - // ... - }*/ + override void update() {} + override void processEvents() {} }