- Initial commit

This commit is contained in:
Tristan B. Velloza Kildaire 2023-02-28 23:56:21 +02:00
commit 7e892b1c83
3 changed files with 34 additions and 0 deletions

16
.gitignore vendored Normal file
View File

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

12
dub.json Normal file
View File

@ -0,0 +1,12 @@
{
"authors": [
"Tristan B. Velloza Kildaire"
],
"copyright": "Copyright © 2023, Tristan B. Velloza Kildaire",
"dependencies": {
"gogga": "~>0.1.3"
},
"description": "Reference implementation of the DNET server protocol",
"license": "AGPL 3.0",
"name": "renaissance"
}

6
source/app.d Normal file
View File

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