update
This commit is contained in:
parent
cffdf93e66
commit
47216b27c1
|
@ -1,59 +0,0 @@
|
||||||
{
|
|
||||||
"authors": [
|
|
||||||
"rillki"
|
|
||||||
],
|
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"lflags": [
|
|
||||||
"-framework",
|
|
||||||
"IOKit",
|
|
||||||
"-framework",
|
|
||||||
"Cocoa",
|
|
||||||
"-framework",
|
|
||||||
"OpenGL"
|
|
||||||
],
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "osx-app",
|
|
||||||
"platforms": [
|
|
||||||
"osx"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib",
|
|
||||||
"GL",
|
|
||||||
"m",
|
|
||||||
"pthread",
|
|
||||||
"dl",
|
|
||||||
"rt",
|
|
||||||
"X11"
|
|
||||||
],
|
|
||||||
"name": "linux-app",
|
|
||||||
"platforms": [
|
|
||||||
"linux"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"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",
|
|
||||||
"targetPath": "bin"
|
|
||||||
}
|
|
|
@ -4,7 +4,7 @@
|
||||||
"ddmp": "0.0.1-0.dev.3",
|
"ddmp": "0.0.1-0.dev.3",
|
||||||
"fluent-asserts": "0.13.3",
|
"fluent-asserts": "0.13.3",
|
||||||
"libdparse": "0.14.0",
|
"libdparse": "0.14.0",
|
||||||
"raylib-d": "4.5.0",
|
"raylib-d": "5.0.1",
|
||||||
"stdx-allocator": "2.77.5"
|
"stdx-allocator": "2.77.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -2,58 +2,18 @@
|
||||||
"authors": [
|
"authors": [
|
||||||
"rillki"
|
"rillki"
|
||||||
],
|
],
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"lflags": [
|
|
||||||
"-framework",
|
|
||||||
"IOKit",
|
|
||||||
"-framework",
|
|
||||||
"Cocoa",
|
|
||||||
"-framework",
|
|
||||||
"OpenGL"
|
|
||||||
],
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "osx-app",
|
|
||||||
"platforms": [
|
|
||||||
"osx"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib",
|
|
||||||
"GL",
|
|
||||||
"m",
|
|
||||||
"pthread",
|
|
||||||
"dl",
|
|
||||||
"rt",
|
|
||||||
"X11"
|
|
||||||
],
|
|
||||||
"name": "linux-app",
|
|
||||||
"platforms": [
|
|
||||||
"linux"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "windows-app",
|
|
||||||
"platforms": [
|
|
||||||
"windows"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"copyright": "Copyright © 2021, rillki",
|
"copyright": "Copyright © 2021, rillki",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"raylib-d": "~>4.5.0"
|
"raylib-d": "~>5.0.1"
|
||||||
},
|
},
|
||||||
|
"libs": [ "raylib" ],
|
||||||
|
"lflags-posix" : ["-L."],
|
||||||
|
"lflags-osx" : ["-rpath", "@executable_path/"],
|
||||||
|
"lflags-linux" : ["-rpath=$$ORIGIN"],
|
||||||
|
"preBuildCommands": [
|
||||||
|
"dub run raylib-d:install"
|
||||||
|
],
|
||||||
"description": "D/Raylib minimal setup",
|
"description": "D/Raylib minimal setup",
|
||||||
"license": "no license",
|
"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",
|
"ddmp": "0.0.1-0.dev.3",
|
||||||
"fluent-asserts": "0.13.3",
|
"fluent-asserts": "0.13.3",
|
||||||
"libdparse": "0.14.0",
|
"libdparse": "0.14.0",
|
||||||
"raylib-d": "4.5.0",
|
"raylib-d": "5.0.1",
|
||||||
"stdx-allocator": "2.77.5"
|
"stdx-allocator": "2.77.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -2,58 +2,18 @@
|
||||||
"authors": [
|
"authors": [
|
||||||
"rillki"
|
"rillki"
|
||||||
],
|
],
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"lflags": [
|
|
||||||
"-framework",
|
|
||||||
"IOKit",
|
|
||||||
"-framework",
|
|
||||||
"Cocoa",
|
|
||||||
"-framework",
|
|
||||||
"OpenGL"
|
|
||||||
],
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "osx-app",
|
|
||||||
"platforms": [
|
|
||||||
"osx"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib",
|
|
||||||
"GL",
|
|
||||||
"m",
|
|
||||||
"pthread",
|
|
||||||
"dl",
|
|
||||||
"rt",
|
|
||||||
"X11"
|
|
||||||
],
|
|
||||||
"name": "linux-app",
|
|
||||||
"platforms": [
|
|
||||||
"linux"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "windows-app",
|
|
||||||
"platforms": [
|
|
||||||
"windows"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"copyright": "Copyright © 2021, rillki",
|
"copyright": "Copyright © 2021, rillki",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"raylib-d": "~>4.5.0"
|
"raylib-d": "~>5.0.1"
|
||||||
},
|
},
|
||||||
|
"libs": [ "raylib" ],
|
||||||
|
"lflags-posix" : ["-L."],
|
||||||
|
"lflags-osx" : ["-rpath", "@executable_path/"],
|
||||||
|
"lflags-linux" : ["-rpath=$$ORIGIN"],
|
||||||
|
"preBuildCommands": [
|
||||||
|
"dub run raylib-d:install"
|
||||||
|
],
|
||||||
"description": "D/Raylib minimal setup",
|
"description": "D/Raylib minimal setup",
|
||||||
"license": "no license",
|
"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",
|
"ddmp": "0.0.1-0.dev.3",
|
||||||
"fluent-asserts": "0.13.3",
|
"fluent-asserts": "0.13.3",
|
||||||
"libdparse": "0.14.0",
|
"libdparse": "0.14.0",
|
||||||
"raylib-d": "4.5.0",
|
"raylib-d": "5.0.1",
|
||||||
"stdx-allocator": "2.77.5"
|
"stdx-allocator": "2.77.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -2,58 +2,18 @@
|
||||||
"authors": [
|
"authors": [
|
||||||
"rillki"
|
"rillki"
|
||||||
],
|
],
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"lflags": [
|
|
||||||
"-framework",
|
|
||||||
"IOKit",
|
|
||||||
"-framework",
|
|
||||||
"Cocoa",
|
|
||||||
"-framework",
|
|
||||||
"OpenGL"
|
|
||||||
],
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "osx-app",
|
|
||||||
"platforms": [
|
|
||||||
"osx"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib",
|
|
||||||
"GL",
|
|
||||||
"m",
|
|
||||||
"pthread",
|
|
||||||
"dl",
|
|
||||||
"rt",
|
|
||||||
"X11"
|
|
||||||
],
|
|
||||||
"name": "linux-app",
|
|
||||||
"platforms": [
|
|
||||||
"linux"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "windows-app",
|
|
||||||
"platforms": [
|
|
||||||
"windows"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"copyright": "Copyright © 2021, rillki",
|
"copyright": "Copyright © 2021, rillki",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"raylib-d": "~>4.5.0"
|
"raylib-d": "~>5.0.1"
|
||||||
},
|
},
|
||||||
|
"libs": [ "raylib" ],
|
||||||
|
"lflags-posix" : ["-L."],
|
||||||
|
"lflags-osx" : ["-rpath", "@executable_path/"],
|
||||||
|
"lflags-linux" : ["-rpath=$$ORIGIN"],
|
||||||
|
"preBuildCommands": [
|
||||||
|
"dub run raylib-d:install"
|
||||||
|
],
|
||||||
"description": "D/Raylib minimal setup",
|
"description": "D/Raylib minimal setup",
|
||||||
"license": "no license",
|
"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",
|
"ddmp": "0.0.1-0.dev.3",
|
||||||
"fluent-asserts": "0.13.3",
|
"fluent-asserts": "0.13.3",
|
||||||
"libdparse": "0.14.0",
|
"libdparse": "0.14.0",
|
||||||
"raylib-d": "4.5.0",
|
"raylib-d": "5.0.1",
|
||||||
"stdx-allocator": "2.77.5"
|
"stdx-allocator": "2.77.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -71,7 +71,7 @@ void main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// PROCESSING EVENTS
|
// PROCESSING EVENTS
|
||||||
if(IsMouseButtonPressed(MouseButton.MOUSE_LEFT_BUTTON) || IsMouseButtonPressed(MouseButton.MOUSE_RIGHT_BUTTON)) {
|
if(IsMouseButtonPressed(MouseButton.MOUSE_BUTTON_LEFT) || IsMouseButtonPressed(MouseButton.MOUSE_BUTTON_RIGHT)) {
|
||||||
// getting i and j ID of squares
|
// getting i and j ID of squares
|
||||||
// since we convert x and y pos divided by SIZE to an integer, we get the exact number (i, j) of the square our mouse points to
|
// since we convert x and y pos divided by SIZE to an integer, we get the exact number (i, j) of the square our mouse points to
|
||||||
// => 90/128 < 0 and if we convert it to an integer we get 0
|
// => 90/128 < 0 and if we convert it to an integer we get 0
|
||||||
|
|
|
@ -2,58 +2,18 @@
|
||||||
"authors": [
|
"authors": [
|
||||||
"rillki"
|
"rillki"
|
||||||
],
|
],
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"lflags": [
|
|
||||||
"-framework",
|
|
||||||
"IOKit",
|
|
||||||
"-framework",
|
|
||||||
"Cocoa",
|
|
||||||
"-framework",
|
|
||||||
"OpenGL"
|
|
||||||
],
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "osx-app",
|
|
||||||
"platforms": [
|
|
||||||
"osx"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib",
|
|
||||||
"GL",
|
|
||||||
"m",
|
|
||||||
"pthread",
|
|
||||||
"dl",
|
|
||||||
"rt",
|
|
||||||
"X11"
|
|
||||||
],
|
|
||||||
"name": "linux-app",
|
|
||||||
"platforms": [
|
|
||||||
"linux"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "windows-app",
|
|
||||||
"platforms": [
|
|
||||||
"windows"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"copyright": "Copyright © 2021, rillki",
|
"copyright": "Copyright © 2021, rillki",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"raylib-d": "~>4.5.0"
|
"raylib-d": "~>5.0.1"
|
||||||
},
|
},
|
||||||
|
"libs": [ "raylib" ],
|
||||||
|
"lflags-posix" : ["-L."],
|
||||||
|
"lflags-osx" : ["-rpath", "@executable_path/"],
|
||||||
|
"lflags-linux" : ["-rpath=$$ORIGIN"],
|
||||||
|
"preBuildCommands": [
|
||||||
|
"dub run raylib-d:install"
|
||||||
|
],
|
||||||
"description": "D/Raylib minimal setup",
|
"description": "D/Raylib minimal setup",
|
||||||
"license": "no license",
|
"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",
|
"ddmp": "0.0.1-0.dev.3",
|
||||||
"fluent-asserts": "0.13.3",
|
"fluent-asserts": "0.13.3",
|
||||||
"libdparse": "0.14.0",
|
"libdparse": "0.14.0",
|
||||||
"raylib-d": "4.5.0",
|
"raylib-d": "5.0.1",
|
||||||
"stdx-allocator": "2.77.5"
|
"stdx-allocator": "2.77.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -2,58 +2,18 @@
|
||||||
"authors": [
|
"authors": [
|
||||||
"rillki"
|
"rillki"
|
||||||
],
|
],
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"lflags": [
|
|
||||||
"-framework",
|
|
||||||
"IOKit",
|
|
||||||
"-framework",
|
|
||||||
"Cocoa",
|
|
||||||
"-framework",
|
|
||||||
"OpenGL"
|
|
||||||
],
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "osx-app",
|
|
||||||
"platforms": [
|
|
||||||
"osx"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib",
|
|
||||||
"GL",
|
|
||||||
"m",
|
|
||||||
"pthread",
|
|
||||||
"dl",
|
|
||||||
"rt",
|
|
||||||
"X11"
|
|
||||||
],
|
|
||||||
"name": "linux-app",
|
|
||||||
"platforms": [
|
|
||||||
"linux"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "windows-app",
|
|
||||||
"platforms": [
|
|
||||||
"windows"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"copyright": "Copyright © 2021, rillki",
|
"copyright": "Copyright © 2021, rillki",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"raylib-d": "~>4.5.0"
|
"raylib-d": "~>5.0.1"
|
||||||
},
|
},
|
||||||
|
"libs": [ "raylib" ],
|
||||||
|
"lflags-posix" : ["-L."],
|
||||||
|
"lflags-osx" : ["-rpath", "@executable_path/"],
|
||||||
|
"lflags-linux" : ["-rpath=$$ORIGIN"],
|
||||||
|
"preBuildCommands": [
|
||||||
|
"dub run raylib-d:install"
|
||||||
|
],
|
||||||
"description": "D/Raylib minimal setup",
|
"description": "D/Raylib minimal setup",
|
||||||
"license": "no license",
|
"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",
|
"ddmp": "0.0.1-0.dev.3",
|
||||||
"fluent-asserts": "0.13.3",
|
"fluent-asserts": "0.13.3",
|
||||||
"libdparse": "0.14.0",
|
"libdparse": "0.14.0",
|
||||||
"raylib-d": "4.5.0",
|
"raylib-d": "5.0.1",
|
||||||
"stdx-allocator": "2.77.5"
|
"stdx-allocator": "2.77.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -2,58 +2,18 @@
|
||||||
"authors": [
|
"authors": [
|
||||||
"rillki"
|
"rillki"
|
||||||
],
|
],
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"lflags": [
|
|
||||||
"-framework",
|
|
||||||
"IOKit",
|
|
||||||
"-framework",
|
|
||||||
"Cocoa",
|
|
||||||
"-framework",
|
|
||||||
"OpenGL"
|
|
||||||
],
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "osx-app",
|
|
||||||
"platforms": [
|
|
||||||
"osx"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib",
|
|
||||||
"GL",
|
|
||||||
"m",
|
|
||||||
"pthread",
|
|
||||||
"dl",
|
|
||||||
"rt",
|
|
||||||
"X11"
|
|
||||||
],
|
|
||||||
"name": "linux-app",
|
|
||||||
"platforms": [
|
|
||||||
"linux"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "windows-app",
|
|
||||||
"platforms": [
|
|
||||||
"windows"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"copyright": "Copyright © 2021, rillki",
|
"copyright": "Copyright © 2021, rillki",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"raylib-d": "~>4.5.0"
|
"raylib-d": "~>5.0.1"
|
||||||
},
|
},
|
||||||
|
"libs": [ "raylib" ],
|
||||||
|
"lflags-posix" : ["-L."],
|
||||||
|
"lflags-osx" : ["-rpath", "@executable_path/"],
|
||||||
|
"lflags-linux" : ["-rpath=$$ORIGIN"],
|
||||||
|
"preBuildCommands": [
|
||||||
|
"dub run raylib-d:install"
|
||||||
|
],
|
||||||
"description": "D/Raylib minimal setup",
|
"description": "D/Raylib minimal setup",
|
||||||
"license": "no license",
|
"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",
|
"ddmp": "0.0.1-0.dev.3",
|
||||||
"fluent-asserts": "0.13.3",
|
"fluent-asserts": "0.13.3",
|
||||||
"libdparse": "0.14.0",
|
"libdparse": "0.14.0",
|
||||||
"raylib-d": "4.5.0",
|
"raylib-d": "5.0.1",
|
||||||
"stdx-allocator": "2.77.5"
|
"stdx-allocator": "2.77.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -2,58 +2,18 @@
|
||||||
"authors": [
|
"authors": [
|
||||||
"rillki"
|
"rillki"
|
||||||
],
|
],
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"lflags": [
|
|
||||||
"-framework",
|
|
||||||
"IOKit",
|
|
||||||
"-framework",
|
|
||||||
"Cocoa",
|
|
||||||
"-framework",
|
|
||||||
"OpenGL"
|
|
||||||
],
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "osx-app",
|
|
||||||
"platforms": [
|
|
||||||
"osx"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib",
|
|
||||||
"GL",
|
|
||||||
"m",
|
|
||||||
"pthread",
|
|
||||||
"dl",
|
|
||||||
"rt",
|
|
||||||
"X11"
|
|
||||||
],
|
|
||||||
"name": "linux-app",
|
|
||||||
"platforms": [
|
|
||||||
"linux"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "windows-app",
|
|
||||||
"platforms": [
|
|
||||||
"windows"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"copyright": "Copyright © 2021, rillki",
|
"copyright": "Copyright © 2021, rillki",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"raylib-d": "~>4.5.0"
|
"raylib-d": "~>5.0.1"
|
||||||
},
|
},
|
||||||
|
"libs": [ "raylib" ],
|
||||||
|
"lflags-posix" : ["-L."],
|
||||||
|
"lflags-osx" : ["-rpath", "@executable_path/"],
|
||||||
|
"lflags-linux" : ["-rpath=$$ORIGIN"],
|
||||||
|
"preBuildCommands": [
|
||||||
|
"dub run raylib-d:install"
|
||||||
|
],
|
||||||
"description": "D/Raylib minimal setup",
|
"description": "D/Raylib minimal setup",
|
||||||
"license": "no license",
|
"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",
|
"ddmp": "0.0.1-0.dev.3",
|
||||||
"fluent-asserts": "0.13.3",
|
"fluent-asserts": "0.13.3",
|
||||||
"libdparse": "0.14.0",
|
"libdparse": "0.14.0",
|
||||||
"raylib-d": "4.5.0",
|
"raylib-d": "5.0.1",
|
||||||
"stdx-allocator": "2.77.5"
|
"stdx-allocator": "2.77.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -2,58 +2,18 @@
|
||||||
"authors": [
|
"authors": [
|
||||||
"rillki"
|
"rillki"
|
||||||
],
|
],
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"lflags": [
|
|
||||||
"-framework",
|
|
||||||
"IOKit",
|
|
||||||
"-framework",
|
|
||||||
"Cocoa",
|
|
||||||
"-framework",
|
|
||||||
"OpenGL"
|
|
||||||
],
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "osx-app",
|
|
||||||
"platforms": [
|
|
||||||
"osx"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib",
|
|
||||||
"GL",
|
|
||||||
"m",
|
|
||||||
"pthread",
|
|
||||||
"dl",
|
|
||||||
"rt",
|
|
||||||
"X11"
|
|
||||||
],
|
|
||||||
"name": "linux-app",
|
|
||||||
"platforms": [
|
|
||||||
"linux"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "windows-app",
|
|
||||||
"platforms": [
|
|
||||||
"windows"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"copyright": "Copyright © 2021, rillki",
|
"copyright": "Copyright © 2021, rillki",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"raylib-d": "~>4.5.0"
|
"raylib-d": "~>5.0.1"
|
||||||
},
|
},
|
||||||
|
"libs": [ "raylib" ],
|
||||||
|
"lflags-posix" : ["-L."],
|
||||||
|
"lflags-osx" : ["-rpath", "@executable_path/"],
|
||||||
|
"lflags-linux" : ["-rpath=$$ORIGIN"],
|
||||||
|
"preBuildCommands": [
|
||||||
|
"dub run raylib-d:install"
|
||||||
|
],
|
||||||
"description": "D/Raylib minimal setup",
|
"description": "D/Raylib minimal setup",
|
||||||
"license": "no license",
|
"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",
|
"ddmp": "0.0.1-0.dev.3",
|
||||||
"fluent-asserts": "0.13.3",
|
"fluent-asserts": "0.13.3",
|
||||||
"libdparse": "0.14.0",
|
"libdparse": "0.14.0",
|
||||||
"raylib-d": "4.5.0",
|
"raylib-d": "5.0.1",
|
||||||
"stdx-allocator": "2.77.5"
|
"stdx-allocator": "2.77.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -2,58 +2,18 @@
|
||||||
"authors": [
|
"authors": [
|
||||||
"rillki"
|
"rillki"
|
||||||
],
|
],
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"lflags": [
|
|
||||||
"-framework",
|
|
||||||
"IOKit",
|
|
||||||
"-framework",
|
|
||||||
"Cocoa",
|
|
||||||
"-framework",
|
|
||||||
"OpenGL"
|
|
||||||
],
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "osx-app",
|
|
||||||
"platforms": [
|
|
||||||
"osx"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib",
|
|
||||||
"GL",
|
|
||||||
"m",
|
|
||||||
"pthread",
|
|
||||||
"dl",
|
|
||||||
"rt",
|
|
||||||
"X11"
|
|
||||||
],
|
|
||||||
"name": "linux-app",
|
|
||||||
"platforms": [
|
|
||||||
"linux"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "windows-app",
|
|
||||||
"platforms": [
|
|
||||||
"windows"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"copyright": "Copyright © 2021, rillki",
|
"copyright": "Copyright © 2021, rillki",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"raylib-d": "~>4.5.0"
|
"raylib-d": "~>5.0.1"
|
||||||
},
|
},
|
||||||
|
"libs": [ "raylib" ],
|
||||||
|
"lflags-posix" : ["-L."],
|
||||||
|
"lflags-osx" : ["-rpath", "@executable_path/"],
|
||||||
|
"lflags-linux" : ["-rpath=$$ORIGIN"],
|
||||||
|
"preBuildCommands": [
|
||||||
|
"dub run raylib-d:install"
|
||||||
|
],
|
||||||
"description": "D/Raylib minimal setup",
|
"description": "D/Raylib minimal setup",
|
||||||
"license": "no license",
|
"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",
|
"ddmp": "0.0.1-0.dev.3",
|
||||||
"fluent-asserts": "0.13.3",
|
"fluent-asserts": "0.13.3",
|
||||||
"libdparse": "0.14.0",
|
"libdparse": "0.14.0",
|
||||||
"raylib-d": "4.5.0",
|
"raylib-d": "5.0.1",
|
||||||
"stdx-allocator": "2.77.5"
|
"stdx-allocator": "2.77.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -2,58 +2,18 @@
|
||||||
"authors": [
|
"authors": [
|
||||||
"rillki"
|
"rillki"
|
||||||
],
|
],
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"lflags": [
|
|
||||||
"-framework",
|
|
||||||
"IOKit",
|
|
||||||
"-framework",
|
|
||||||
"Cocoa",
|
|
||||||
"-framework",
|
|
||||||
"OpenGL"
|
|
||||||
],
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "osx-app",
|
|
||||||
"platforms": [
|
|
||||||
"osx"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib",
|
|
||||||
"GL",
|
|
||||||
"m",
|
|
||||||
"pthread",
|
|
||||||
"dl",
|
|
||||||
"rt",
|
|
||||||
"X11"
|
|
||||||
],
|
|
||||||
"name": "linux-app",
|
|
||||||
"platforms": [
|
|
||||||
"linux"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "windows-app",
|
|
||||||
"platforms": [
|
|
||||||
"windows"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"copyright": "Copyright © 2021, rillki",
|
"copyright": "Copyright © 2021, rillki",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"raylib-d": "~>4.5.0"
|
"raylib-d": "~>5.0.1"
|
||||||
},
|
},
|
||||||
|
"libs": [ "raylib" ],
|
||||||
|
"lflags-posix" : ["-L."],
|
||||||
|
"lflags-osx" : ["-rpath", "@executable_path/"],
|
||||||
|
"lflags-linux" : ["-rpath=$$ORIGIN"],
|
||||||
|
"preBuildCommands": [
|
||||||
|
"dub run raylib-d:install"
|
||||||
|
],
|
||||||
"description": "D/Raylib minimal setup",
|
"description": "D/Raylib minimal setup",
|
||||||
"license": "no license",
|
"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",
|
"ddmp": "0.0.1-0.dev.3",
|
||||||
"fluent-asserts": "0.13.3",
|
"fluent-asserts": "0.13.3",
|
||||||
"libdparse": "0.14.0",
|
"libdparse": "0.14.0",
|
||||||
"raylib-d": "4.5.0",
|
"raylib-d": "5.0.1",
|
||||||
"stdx-allocator": "2.77.5"
|
"stdx-allocator": "2.77.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -2,58 +2,18 @@
|
||||||
"authors": [
|
"authors": [
|
||||||
"rillki"
|
"rillki"
|
||||||
],
|
],
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"lflags": [
|
|
||||||
"-framework",
|
|
||||||
"IOKit",
|
|
||||||
"-framework",
|
|
||||||
"Cocoa",
|
|
||||||
"-framework",
|
|
||||||
"OpenGL"
|
|
||||||
],
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "osx-app",
|
|
||||||
"platforms": [
|
|
||||||
"osx"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib",
|
|
||||||
"GL",
|
|
||||||
"m",
|
|
||||||
"pthread",
|
|
||||||
"dl",
|
|
||||||
"rt",
|
|
||||||
"X11"
|
|
||||||
],
|
|
||||||
"name": "linux-app",
|
|
||||||
"platforms": [
|
|
||||||
"linux"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "windows-app",
|
|
||||||
"platforms": [
|
|
||||||
"windows"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"copyright": "Copyright © 2021, rillki",
|
"copyright": "Copyright © 2021, rillki",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"raylib-d": "~>4.5.0"
|
"raylib-d": "~>5.0.1"
|
||||||
},
|
},
|
||||||
|
"libs": [ "raylib" ],
|
||||||
|
"lflags-posix" : ["-L."],
|
||||||
|
"lflags-osx" : ["-rpath", "@executable_path/"],
|
||||||
|
"lflags-linux" : ["-rpath=$$ORIGIN"],
|
||||||
|
"preBuildCommands": [
|
||||||
|
"dub run raylib-d:install"
|
||||||
|
],
|
||||||
"description": "D/Raylib minimal setup",
|
"description": "D/Raylib minimal setup",
|
||||||
"license": "no license",
|
"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",
|
"ddmp": "0.0.1-0.dev.3",
|
||||||
"fluent-asserts": "0.13.3",
|
"fluent-asserts": "0.13.3",
|
||||||
"libdparse": "0.14.0",
|
"libdparse": "0.14.0",
|
||||||
"raylib-d": "4.5.0",
|
"raylib-d": "5.0.1",
|
||||||
"stdx-allocator": "2.77.5"
|
"stdx-allocator": "2.77.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue