bin deleted
Merge branch 'master' of https://github.com/rillki/learn-dlang
This commit is contained in:
commit
a45709c941
|
@ -1,2 +1,8 @@
|
||||||
.dub
|
.dub
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
bin/
|
||||||
|
__internal/
|
||||||
|
lib/
|
||||||
|
*.lib
|
||||||
|
*.a
|
||||||
|
*.dll
|
||||||
|
|
|
@ -40,6 +40,9 @@ class Entity {
|
||||||
void draw() {
|
void draw() {
|
||||||
DrawTextureRec(texture, frame, position, Colors.WHITE);
|
DrawTextureRec(texture, frame, position, Colors.WHITE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
abstract void update();
|
||||||
|
abstract void processEvents();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,6 @@ module game.play;
|
||||||
|
|
||||||
import game.data;
|
import game.data;
|
||||||
import game.gstatemanager;
|
import game.gstatemanager;
|
||||||
|
|
||||||
import game.player;
|
import game.player;
|
||||||
|
|
||||||
import std.file: getcwd;
|
import std.file: getcwd;
|
||||||
|
@ -10,6 +9,7 @@ import std.path: buildPath;
|
||||||
import std.string: toStringz;
|
import std.string: toStringz;
|
||||||
|
|
||||||
class Play: IState {
|
class Play: IState {
|
||||||
|
// variables
|
||||||
private {
|
private {
|
||||||
Texture2D texPlayer;
|
Texture2D texPlayer;
|
||||||
Player player;
|
Player player;
|
||||||
|
|
|
@ -7,9 +7,8 @@ class Player: Entity {
|
||||||
super(texture, frame, position);
|
super(texture, frame, position);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*override void update() {
|
override void update() {}
|
||||||
// ...
|
override void processEvents() {}
|
||||||
}*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue