raylib update

This commit is contained in:
Ki Rill 2023-04-02 07:46:09 +06:00
parent 657ce66b59
commit 51d135e9a1
29 changed files with 289 additions and 211 deletions

View File

@ -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"
}

View File

@ -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"
}
}

View File

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

View File

@ -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"
}

View File

@ -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"
}
}

View File

@ -3,6 +3,8 @@ import std.stdio: writeln;
import raylib;
void main() {
validateRaylibBinding();
// creating window
InitWindow(720, 640, "Dlang Raylib Window");

View File

@ -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"
}

View File

@ -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"
}
}

View File

@ -31,6 +31,8 @@ struct Entity {
}
void main() {
validateRaylibBinding();
// creating window
InitWindow(720, 640, "Dlang Raylib Window");
SetTargetFPS(30); // frames per second

View File

@ -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"
}

View File

@ -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"
}
}

View File

@ -3,6 +3,8 @@ import test;
import raylib;
void main() {
validateRaylibBinding();
// creating window
InitWindow(720, 640, "Dlang Raylib Window");
SetTargetFPS(30); // frames per second

View File

@ -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"
}

View File

@ -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"
}
}

View File

@ -5,6 +5,8 @@ import raylib;
import std.conv: to;
void main() {
validateRaylibBinding();
// init
InitWindow(WIDTH, HEIGHT, "Dlang Tic Tac Toe");
SetTargetFPS(30);

View File

@ -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"
}

View File

@ -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"
}
}

View File

@ -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"
}

View File

@ -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"
}
}

View File

@ -2,6 +2,8 @@ import data;
import gstatemanager;
void main() {
validateRaylibBinding();
// init
InitWindow(windowWidth, windowHeight, "Mission X");
scope(exit) CloseWindow();

View File

@ -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"
}

View File

@ -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"
}
}

View File

@ -4,7 +4,10 @@ import gstatemanager;
import menu;
import play;
void main() {/*
void main() {
/*
validateRaylibBinding();
// init
InitWindow(windowWidth, windowHeight, "Mission X");
scope(exit) CloseWindow();

View File

@ -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"
}

View File

@ -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"
}
}

View File

@ -5,6 +5,8 @@ import menu;
import play;
void main() {
validateRaylibBinding();
// init
InitWindow(windowWidth, windowHeight, "Mission X");
scope(exit) { CloseWindow(); }

View File

@ -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"
}

View File

@ -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"
}
}

View File

@ -6,6 +6,8 @@ import game.menu;
import game.play;
void main() {
validateRaylibBinding();
// init
InitWindow(windowWidth, windowHeight, "Mission X");
scope(exit) { CloseWindow(); }