raylib update
This commit is contained in:
parent
657ce66b59
commit
51d135e9a1
|
@ -2,19 +2,8 @@
|
|||
"authors": [
|
||||
"rillki"
|
||||
],
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"targetPath": "bin",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>4.0.1"
|
||||
},
|
||||
"configurations": [
|
||||
{
|
||||
"name": "osx-app",
|
||||
"platforms": ["osx"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"lflags": [
|
||||
"-framework",
|
||||
"IOKit",
|
||||
|
@ -23,11 +12,16 @@
|
|||
"-framework",
|
||||
"OpenGL"
|
||||
],
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"name": "osx-app",
|
||||
"platforms": [
|
||||
"osx"
|
||||
],
|
||||
"targetType": "executable"
|
||||
},
|
||||
{
|
||||
"name": "linux-app",
|
||||
"platforms": ["linux"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib",
|
||||
"GL",
|
||||
|
@ -37,17 +31,29 @@
|
|||
"rt",
|
||||
"X11"
|
||||
],
|
||||
"name": "linux-app",
|
||||
"platforms": [
|
||||
"linux"
|
||||
],
|
||||
"targetType": "executable"
|
||||
},
|
||||
{
|
||||
"name": "windows-app",
|
||||
"platforms": ["windows"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylibdll"
|
||||
"raylib"
|
||||
],
|
||||
"name": "windows-app",
|
||||
"platforms": [
|
||||
"windows"
|
||||
],
|
||||
"targetType": "executable"
|
||||
}
|
||||
],
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>4.5.0"
|
||||
},
|
||||
],
|
||||
"description": "D/Raylib minimal setup",
|
||||
"license": "no license",
|
||||
"name": "d-raylib-project-template"
|
||||
"name": "d-raylib-project-template",
|
||||
"targetPath": "bin"
|
||||
}
|
|
@ -4,7 +4,7 @@
|
|||
"ddmp": "0.0.1-0.dev.3",
|
||||
"fluent-asserts": "0.13.3",
|
||||
"libdparse": "0.14.0",
|
||||
"raylib-d": "4.0.1",
|
||||
"raylib-d": "4.5.0",
|
||||
"stdx-allocator": "2.77.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,5 +3,6 @@ import std.stdio;
|
|||
import raylib;
|
||||
|
||||
void main() {
|
||||
validateRaylibBinding();
|
||||
writeln("Edit source/app.d to start your project.");
|
||||
}
|
||||
|
|
|
@ -2,19 +2,8 @@
|
|||
"authors": [
|
||||
"rillki"
|
||||
],
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"targetPath": "bin",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>4.0.1"
|
||||
},
|
||||
"configurations": [
|
||||
{
|
||||
"name": "osx-app",
|
||||
"platforms": ["osx"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"lflags": [
|
||||
"-framework",
|
||||
"IOKit",
|
||||
|
@ -23,11 +12,16 @@
|
|||
"-framework",
|
||||
"OpenGL"
|
||||
],
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"name": "osx-app",
|
||||
"platforms": [
|
||||
"osx"
|
||||
],
|
||||
"targetType": "executable"
|
||||
},
|
||||
{
|
||||
"name": "linux-app",
|
||||
"platforms": ["linux"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib",
|
||||
"GL",
|
||||
|
@ -37,17 +31,29 @@
|
|||
"rt",
|
||||
"X11"
|
||||
],
|
||||
"name": "linux-app",
|
||||
"platforms": [
|
||||
"linux"
|
||||
],
|
||||
"targetType": "executable"
|
||||
},
|
||||
{
|
||||
"name": "windows-app",
|
||||
"platforms": ["windows"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylibdll"
|
||||
"raylib"
|
||||
],
|
||||
"name": "windows-app",
|
||||
"platforms": [
|
||||
"windows"
|
||||
],
|
||||
"targetType": "executable"
|
||||
}
|
||||
],
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>4.5.0"
|
||||
},
|
||||
],
|
||||
"description": "D/Raylib minimal setup",
|
||||
"license": "no license",
|
||||
"name": "d-raylib-project-template"
|
||||
"name": "d-raylib-project-template",
|
||||
"targetPath": "bin"
|
||||
}
|
|
@ -4,7 +4,7 @@
|
|||
"ddmp": "0.0.1-0.dev.3",
|
||||
"fluent-asserts": "0.13.3",
|
||||
"libdparse": "0.14.0",
|
||||
"raylib-d": "4.0.1",
|
||||
"raylib-d": "4.5.0",
|
||||
"stdx-allocator": "2.77.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,6 +3,8 @@ import std.stdio: writeln;
|
|||
import raylib;
|
||||
|
||||
void main() {
|
||||
validateRaylibBinding();
|
||||
|
||||
// creating window
|
||||
InitWindow(720, 640, "Dlang Raylib Window");
|
||||
|
||||
|
|
|
@ -2,19 +2,8 @@
|
|||
"authors": [
|
||||
"rillki"
|
||||
],
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"targetPath": "bin",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>4.0.1"
|
||||
},
|
||||
"configurations": [
|
||||
{
|
||||
"name": "osx-app",
|
||||
"platforms": ["osx"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"lflags": [
|
||||
"-framework",
|
||||
"IOKit",
|
||||
|
@ -23,11 +12,16 @@
|
|||
"-framework",
|
||||
"OpenGL"
|
||||
],
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"name": "osx-app",
|
||||
"platforms": [
|
||||
"osx"
|
||||
],
|
||||
"targetType": "executable"
|
||||
},
|
||||
{
|
||||
"name": "linux-app",
|
||||
"platforms": ["linux"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib",
|
||||
"GL",
|
||||
|
@ -37,17 +31,29 @@
|
|||
"rt",
|
||||
"X11"
|
||||
],
|
||||
"name": "linux-app",
|
||||
"platforms": [
|
||||
"linux"
|
||||
],
|
||||
"targetType": "executable"
|
||||
},
|
||||
{
|
||||
"name": "windows-app",
|
||||
"platforms": ["windows"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylibdll"
|
||||
"raylib"
|
||||
],
|
||||
"name": "windows-app",
|
||||
"platforms": [
|
||||
"windows"
|
||||
],
|
||||
"targetType": "executable"
|
||||
}
|
||||
],
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>4.5.0"
|
||||
},
|
||||
],
|
||||
"description": "D/Raylib minimal setup",
|
||||
"license": "no license",
|
||||
"name": "d-raylib-project-template"
|
||||
"name": "d-raylib-project-template",
|
||||
"targetPath": "bin"
|
||||
}
|
|
@ -4,7 +4,7 @@
|
|||
"ddmp": "0.0.1-0.dev.3",
|
||||
"fluent-asserts": "0.13.3",
|
||||
"libdparse": "0.14.0",
|
||||
"raylib-d": "4.0.1",
|
||||
"raylib-d": "4.5.0",
|
||||
"stdx-allocator": "2.77.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -31,6 +31,8 @@ struct Entity {
|
|||
}
|
||||
|
||||
void main() {
|
||||
validateRaylibBinding();
|
||||
|
||||
// creating window
|
||||
InitWindow(720, 640, "Dlang Raylib Window");
|
||||
SetTargetFPS(30); // frames per second
|
||||
|
|
|
@ -2,19 +2,8 @@
|
|||
"authors": [
|
||||
"rillki"
|
||||
],
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"targetPath": "bin",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>4.0.1"
|
||||
},
|
||||
"configurations": [
|
||||
{
|
||||
"name": "osx-app",
|
||||
"platforms": ["osx"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"lflags": [
|
||||
"-framework",
|
||||
"IOKit",
|
||||
|
@ -23,11 +12,16 @@
|
|||
"-framework",
|
||||
"OpenGL"
|
||||
],
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"name": "osx-app",
|
||||
"platforms": [
|
||||
"osx"
|
||||
],
|
||||
"targetType": "executable"
|
||||
},
|
||||
{
|
||||
"name": "linux-app",
|
||||
"platforms": ["linux"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib",
|
||||
"GL",
|
||||
|
@ -37,17 +31,29 @@
|
|||
"rt",
|
||||
"X11"
|
||||
],
|
||||
"name": "linux-app",
|
||||
"platforms": [
|
||||
"linux"
|
||||
],
|
||||
"targetType": "executable"
|
||||
},
|
||||
{
|
||||
"name": "windows-app",
|
||||
"platforms": ["windows"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylibdll"
|
||||
"raylib"
|
||||
],
|
||||
"name": "windows-app",
|
||||
"platforms": [
|
||||
"windows"
|
||||
],
|
||||
"targetType": "executable"
|
||||
}
|
||||
],
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>4.5.0"
|
||||
},
|
||||
],
|
||||
"description": "D/Raylib minimal setup",
|
||||
"license": "no license",
|
||||
"name": "d-raylib-project-template"
|
||||
"name": "d-raylib-project-template",
|
||||
"targetPath": "bin"
|
||||
}
|
|
@ -4,7 +4,7 @@
|
|||
"ddmp": "0.0.1-0.dev.3",
|
||||
"fluent-asserts": "0.13.3",
|
||||
"libdparse": "0.14.0",
|
||||
"raylib-d": "4.0.1",
|
||||
"raylib-d": "4.5.0",
|
||||
"stdx-allocator": "2.77.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,6 +3,8 @@ import test;
|
|||
import raylib;
|
||||
|
||||
void main() {
|
||||
validateRaylibBinding();
|
||||
|
||||
// creating window
|
||||
InitWindow(720, 640, "Dlang Raylib Window");
|
||||
SetTargetFPS(30); // frames per second
|
||||
|
|
|
@ -2,19 +2,8 @@
|
|||
"authors": [
|
||||
"rillki"
|
||||
],
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"targetPath": "bin",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>4.0.1"
|
||||
},
|
||||
"configurations": [
|
||||
{
|
||||
"name": "osx-app",
|
||||
"platforms": ["osx"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"lflags": [
|
||||
"-framework",
|
||||
"IOKit",
|
||||
|
@ -23,11 +12,16 @@
|
|||
"-framework",
|
||||
"OpenGL"
|
||||
],
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"name": "osx-app",
|
||||
"platforms": [
|
||||
"osx"
|
||||
],
|
||||
"targetType": "executable"
|
||||
},
|
||||
{
|
||||
"name": "linux-app",
|
||||
"platforms": ["linux"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib",
|
||||
"GL",
|
||||
|
@ -37,17 +31,29 @@
|
|||
"rt",
|
||||
"X11"
|
||||
],
|
||||
"name": "linux-app",
|
||||
"platforms": [
|
||||
"linux"
|
||||
],
|
||||
"targetType": "executable"
|
||||
},
|
||||
{
|
||||
"name": "windows-app",
|
||||
"platforms": ["windows"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylibdll"
|
||||
"raylib"
|
||||
],
|
||||
"name": "windows-app",
|
||||
"platforms": [
|
||||
"windows"
|
||||
],
|
||||
"targetType": "executable"
|
||||
}
|
||||
],
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>4.5.0"
|
||||
},
|
||||
],
|
||||
"description": "D/Raylib minimal setup",
|
||||
"license": "no license",
|
||||
"name": "d-raylib-project-template"
|
||||
"name": "d-raylib-project-template",
|
||||
"targetPath": "bin"
|
||||
}
|
|
@ -4,7 +4,7 @@
|
|||
"ddmp": "0.0.1-0.dev.3",
|
||||
"fluent-asserts": "0.13.3",
|
||||
"libdparse": "0.14.0",
|
||||
"raylib-d": "4.0.1",
|
||||
"raylib-d": "4.5.0",
|
||||
"stdx-allocator": "2.77.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,6 +5,8 @@ import raylib;
|
|||
import std.conv: to;
|
||||
|
||||
void main() {
|
||||
validateRaylibBinding();
|
||||
|
||||
// init
|
||||
InitWindow(WIDTH, HEIGHT, "Dlang Tic Tac Toe");
|
||||
SetTargetFPS(30);
|
||||
|
|
|
@ -2,19 +2,8 @@
|
|||
"authors": [
|
||||
"rillki"
|
||||
],
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"targetPath": "bin",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>4.0.1"
|
||||
},
|
||||
"configurations": [
|
||||
{
|
||||
"name": "osx-app",
|
||||
"platforms": ["osx"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"lflags": [
|
||||
"-framework",
|
||||
"IOKit",
|
||||
|
@ -23,11 +12,16 @@
|
|||
"-framework",
|
||||
"OpenGL"
|
||||
],
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"name": "osx-app",
|
||||
"platforms": [
|
||||
"osx"
|
||||
],
|
||||
"targetType": "executable"
|
||||
},
|
||||
{
|
||||
"name": "linux-app",
|
||||
"platforms": ["linux"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib",
|
||||
"GL",
|
||||
|
@ -37,17 +31,29 @@
|
|||
"rt",
|
||||
"X11"
|
||||
],
|
||||
"name": "linux-app",
|
||||
"platforms": [
|
||||
"linux"
|
||||
],
|
||||
"targetType": "executable"
|
||||
},
|
||||
{
|
||||
"name": "windows-app",
|
||||
"platforms": ["windows"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylibdll"
|
||||
"raylib"
|
||||
],
|
||||
"name": "windows-app",
|
||||
"platforms": [
|
||||
"windows"
|
||||
],
|
||||
"targetType": "executable"
|
||||
}
|
||||
],
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>4.5.0"
|
||||
},
|
||||
],
|
||||
"description": "D/Raylib minimal setup",
|
||||
"license": "no license",
|
||||
"name": "d-raylib-project-template"
|
||||
"name": "d-raylib-project-template",
|
||||
"targetPath": "bin"
|
||||
}
|
|
@ -4,7 +4,7 @@
|
|||
"ddmp": "0.0.1-0.dev.3",
|
||||
"fluent-asserts": "0.13.3",
|
||||
"libdparse": "0.14.0",
|
||||
"raylib-d": "4.0.1",
|
||||
"raylib-d": "4.5.0",
|
||||
"stdx-allocator": "2.77.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,19 +2,8 @@
|
|||
"authors": [
|
||||
"rillki"
|
||||
],
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"targetPath": "bin",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>4.0.1"
|
||||
},
|
||||
"configurations": [
|
||||
{
|
||||
"name": "osx-app",
|
||||
"platforms": ["osx"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"lflags": [
|
||||
"-framework",
|
||||
"IOKit",
|
||||
|
@ -23,11 +12,16 @@
|
|||
"-framework",
|
||||
"OpenGL"
|
||||
],
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"name": "osx-app",
|
||||
"platforms": [
|
||||
"osx"
|
||||
],
|
||||
"targetType": "executable"
|
||||
},
|
||||
{
|
||||
"name": "linux-app",
|
||||
"platforms": ["linux"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib",
|
||||
"GL",
|
||||
|
@ -37,17 +31,29 @@
|
|||
"rt",
|
||||
"X11"
|
||||
],
|
||||
"name": "linux-app",
|
||||
"platforms": [
|
||||
"linux"
|
||||
],
|
||||
"targetType": "executable"
|
||||
},
|
||||
{
|
||||
"name": "windows-app",
|
||||
"platforms": ["windows"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylibdll"
|
||||
"raylib"
|
||||
],
|
||||
"name": "windows-app",
|
||||
"platforms": [
|
||||
"windows"
|
||||
],
|
||||
"targetType": "executable"
|
||||
}
|
||||
],
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>4.5.0"
|
||||
},
|
||||
],
|
||||
"description": "D/Raylib minimal setup",
|
||||
"license": "no license",
|
||||
"name": "d-raylib-project-template"
|
||||
"name": "d-raylib-project-template",
|
||||
"targetPath": "bin"
|
||||
}
|
|
@ -4,7 +4,7 @@
|
|||
"ddmp": "0.0.1-0.dev.3",
|
||||
"fluent-asserts": "0.13.3",
|
||||
"libdparse": "0.14.0",
|
||||
"raylib-d": "4.0.1",
|
||||
"raylib-d": "4.5.0",
|
||||
"stdx-allocator": "2.77.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,8 @@ import data;
|
|||
import gstatemanager;
|
||||
|
||||
void main() {
|
||||
validateRaylibBinding();
|
||||
|
||||
// init
|
||||
InitWindow(windowWidth, windowHeight, "Mission X");
|
||||
scope(exit) CloseWindow();
|
||||
|
|
|
@ -2,19 +2,8 @@
|
|||
"authors": [
|
||||
"rillki"
|
||||
],
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"targetPath": "bin",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>4.0.1"
|
||||
},
|
||||
"configurations": [
|
||||
{
|
||||
"name": "osx-app",
|
||||
"platforms": ["osx"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"lflags": [
|
||||
"-framework",
|
||||
"IOKit",
|
||||
|
@ -23,11 +12,16 @@
|
|||
"-framework",
|
||||
"OpenGL"
|
||||
],
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"name": "osx-app",
|
||||
"platforms": [
|
||||
"osx"
|
||||
],
|
||||
"targetType": "executable"
|
||||
},
|
||||
{
|
||||
"name": "linux-app",
|
||||
"platforms": ["linux"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib",
|
||||
"GL",
|
||||
|
@ -37,17 +31,29 @@
|
|||
"rt",
|
||||
"X11"
|
||||
],
|
||||
"name": "linux-app",
|
||||
"platforms": [
|
||||
"linux"
|
||||
],
|
||||
"targetType": "executable"
|
||||
},
|
||||
{
|
||||
"name": "windows-app",
|
||||
"platforms": ["windows"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylibdll"
|
||||
"raylib"
|
||||
],
|
||||
"name": "windows-app",
|
||||
"platforms": [
|
||||
"windows"
|
||||
],
|
||||
"targetType": "executable"
|
||||
}
|
||||
],
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>4.5.0"
|
||||
},
|
||||
],
|
||||
"description": "D/Raylib minimal setup",
|
||||
"license": "no license",
|
||||
"name": "d-raylib-project-template"
|
||||
"name": "d-raylib-project-template",
|
||||
"targetPath": "bin"
|
||||
}
|
|
@ -4,7 +4,7 @@
|
|||
"ddmp": "0.0.1-0.dev.3",
|
||||
"fluent-asserts": "0.13.3",
|
||||
"libdparse": "0.14.0",
|
||||
"raylib-d": "4.0.1",
|
||||
"raylib-d": "4.5.0",
|
||||
"stdx-allocator": "2.77.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,7 +4,10 @@ import gstatemanager;
|
|||
import menu;
|
||||
import play;
|
||||
|
||||
void main() {/*
|
||||
void main() {
|
||||
/*
|
||||
validateRaylibBinding();
|
||||
|
||||
// init
|
||||
InitWindow(windowWidth, windowHeight, "Mission X");
|
||||
scope(exit) CloseWindow();
|
||||
|
|
|
@ -2,19 +2,8 @@
|
|||
"authors": [
|
||||
"rillki"
|
||||
],
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"targetPath": "bin",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>4.0.1"
|
||||
},
|
||||
"configurations": [
|
||||
{
|
||||
"name": "osx-app",
|
||||
"platforms": ["osx"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"lflags": [
|
||||
"-framework",
|
||||
"IOKit",
|
||||
|
@ -23,11 +12,16 @@
|
|||
"-framework",
|
||||
"OpenGL"
|
||||
],
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"name": "osx-app",
|
||||
"platforms": [
|
||||
"osx"
|
||||
],
|
||||
"targetType": "executable"
|
||||
},
|
||||
{
|
||||
"name": "linux-app",
|
||||
"platforms": ["linux"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib",
|
||||
"GL",
|
||||
|
@ -37,17 +31,29 @@
|
|||
"rt",
|
||||
"X11"
|
||||
],
|
||||
"name": "linux-app",
|
||||
"platforms": [
|
||||
"linux"
|
||||
],
|
||||
"targetType": "executable"
|
||||
},
|
||||
{
|
||||
"name": "windows-app",
|
||||
"platforms": ["windows"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylibdll"
|
||||
"raylib"
|
||||
],
|
||||
"name": "windows-app",
|
||||
"platforms": [
|
||||
"windows"
|
||||
],
|
||||
"targetType": "executable"
|
||||
}
|
||||
],
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>4.5.0"
|
||||
},
|
||||
],
|
||||
"description": "D/Raylib minimal setup",
|
||||
"license": "no license",
|
||||
"name": "d-raylib-project-template"
|
||||
"name": "d-raylib-project-template",
|
||||
"targetPath": "bin"
|
||||
}
|
|
@ -4,7 +4,7 @@
|
|||
"ddmp": "0.0.1-0.dev.3",
|
||||
"fluent-asserts": "0.13.3",
|
||||
"libdparse": "0.14.0",
|
||||
"raylib-d": "4.0.1",
|
||||
"raylib-d": "4.5.0",
|
||||
"stdx-allocator": "2.77.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,6 +5,8 @@ import menu;
|
|||
import play;
|
||||
|
||||
void main() {
|
||||
validateRaylibBinding();
|
||||
|
||||
// init
|
||||
InitWindow(windowWidth, windowHeight, "Mission X");
|
||||
scope(exit) { CloseWindow(); }
|
||||
|
|
|
@ -2,19 +2,8 @@
|
|||
"authors": [
|
||||
"rillki"
|
||||
],
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"targetPath": "bin",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>4.0.1"
|
||||
},
|
||||
"configurations": [
|
||||
{
|
||||
"name": "osx-app",
|
||||
"platforms": ["osx"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"lflags": [
|
||||
"-framework",
|
||||
"IOKit",
|
||||
|
@ -23,11 +12,16 @@
|
|||
"-framework",
|
||||
"OpenGL"
|
||||
],
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"name": "osx-app",
|
||||
"platforms": [
|
||||
"osx"
|
||||
],
|
||||
"targetType": "executable"
|
||||
},
|
||||
{
|
||||
"name": "linux-app",
|
||||
"platforms": ["linux"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib",
|
||||
"GL",
|
||||
|
@ -37,17 +31,29 @@
|
|||
"rt",
|
||||
"X11"
|
||||
],
|
||||
"name": "linux-app",
|
||||
"platforms": [
|
||||
"linux"
|
||||
],
|
||||
"targetType": "executable"
|
||||
},
|
||||
{
|
||||
"name": "windows-app",
|
||||
"platforms": ["windows"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylibdll"
|
||||
"raylib"
|
||||
],
|
||||
"name": "windows-app",
|
||||
"platforms": [
|
||||
"windows"
|
||||
],
|
||||
"targetType": "executable"
|
||||
}
|
||||
],
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>4.5.0"
|
||||
},
|
||||
],
|
||||
"description": "D/Raylib minimal setup",
|
||||
"license": "no license",
|
||||
"name": "d-raylib-project-template"
|
||||
"name": "d-raylib-project-template",
|
||||
"targetPath": "bin"
|
||||
}
|
|
@ -4,7 +4,7 @@
|
|||
"ddmp": "0.0.1-0.dev.3",
|
||||
"fluent-asserts": "0.13.3",
|
||||
"libdparse": "0.14.0",
|
||||
"raylib-d": "4.0.1",
|
||||
"raylib-d": "4.5.0",
|
||||
"stdx-allocator": "2.77.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,6 +6,8 @@ import game.menu;
|
|||
import game.play;
|
||||
|
||||
void main() {
|
||||
validateRaylibBinding();
|
||||
|
||||
// init
|
||||
InitWindow(windowWidth, windowHeight, "Mission X");
|
||||
scope(exit) { CloseWindow(); }
|
||||
|
|
Loading…
Reference in New Issue