Add files via upload

This commit is contained in:
Ki Rill 2020-01-18 16:12:32 +06:00 committed by GitHub
parent ee4f3d3d45
commit a51cbec75a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,13 @@
{
"authors": [
"rillk500"
],
"copyright": "free",
"dependencies": {
"raylib-d": "~>2.5.0"
},
"libs": [ "raylib" ],
"description": "A minimal D application.",
"license": "no license",
"name": "raylib_firstwindow"
}

View File

@ -0,0 +1,6 @@
{
"fileVersion": 1,
"versions": {
"raylib-d": "2.5.0"
}
}

Binary file not shown.

View File

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