State design pattern
This commit is contained in:
parent
1f16a7f033
commit
99c0504031
|
|
@ -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
|
||||
|
|
@ -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"
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
import std.stdio;
|
||||
|
||||
void main()
|
||||
{
|
||||
writeln("Edit source/app.d to start your project.");
|
||||
}
|
||||
Loading…
Reference in New Issue