State design pattern

This commit is contained in:
Ki Rill 2020-07-30 10:15:50 +06:00
parent 1f16a7f033
commit 99c0504031
3 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,15 @@
.dub
docs.json
__dummy.html
docs/
/ourgame
ourgame.so
ourgame.dylib
ourgame.dll
ourgame.a
ourgame.lib
ourgame-test-*
*.exe
*.o
*.obj
*.lst

View File

@ -0,0 +1,13 @@
{
"authors": [
"rillk500"
],
"copyright": "no copyright",
"dependencies": {
"raylib-d": "~>3.0.2"
},
"libs": [ "raylib" ],
"description": "2D game with roguelike elements",
"license": "no license",
"name": "ourgame"
}

View File

@ -0,0 +1,6 @@
import std.stdio;
void main()
{
writeln("Edit source/app.d to start your project.");
}