raylib-d version update to raylib v4.0.1
This commit is contained in:
parent
a9b1c496d6
commit
17f12d4f9d
|
@ -2,26 +2,52 @@
|
|||
"authors": [
|
||||
"rillki"
|
||||
],
|
||||
"copyright": "no copyright",
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"targetPath": "bin",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>3.0.4"
|
||||
"raylib-d": "~>4.0.1"
|
||||
},
|
||||
"description": "2D game",
|
||||
"lflags": [
|
||||
"-framework",
|
||||
"CoreVideo",
|
||||
"-framework",
|
||||
"IOKit",
|
||||
"-framework",
|
||||
"Cocoa",
|
||||
"-framework",
|
||||
"GLUT",
|
||||
"-framework",
|
||||
"OpenGL"
|
||||
],
|
||||
"libs": [
|
||||
"raylib"
|
||||
"configurations": [
|
||||
{
|
||||
"name": "osx-app",
|
||||
"platforms": ["osx"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"lflags": [
|
||||
"-framework",
|
||||
"IOKit",
|
||||
"-framework",
|
||||
"Cocoa",
|
||||
"-framework",
|
||||
"OpenGL"
|
||||
],
|
||||
},
|
||||
{
|
||||
"name": "linux-app",
|
||||
"platforms": ["linux"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib",
|
||||
"GL",
|
||||
"m",
|
||||
"pthread",
|
||||
"dl",
|
||||
"rt",
|
||||
"X11"
|
||||
],
|
||||
},
|
||||
{
|
||||
"name": "windows-app",
|
||||
"platforms": ["windows"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylibdll"
|
||||
],
|
||||
},
|
||||
],
|
||||
"description": "D/Raylib minimal setup",
|
||||
"license": "no license",
|
||||
"name": "ourgame"
|
||||
"name": "d-raylib-project-template"
|
||||
}
|
|
@ -1,6 +1,10 @@
|
|||
{
|
||||
"fileVersion": 1,
|
||||
"versions": {
|
||||
"raylib-d": "2.5.0"
|
||||
"ddmp": "0.0.1-0.dev.3",
|
||||
"fluent-asserts": "0.13.3",
|
||||
"libdparse": "0.14.0",
|
||||
"raylib-d": "4.0.1",
|
||||
"stdx-allocator": "2.77.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,26 +2,52 @@
|
|||
"authors": [
|
||||
"rillki"
|
||||
],
|
||||
"copyright": "no copyright",
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"targetPath": "bin",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>3.0.4"
|
||||
"raylib-d": "~>4.0.1"
|
||||
},
|
||||
"description": "2D game",
|
||||
"lflags": [
|
||||
"-framework",
|
||||
"CoreVideo",
|
||||
"-framework",
|
||||
"IOKit",
|
||||
"-framework",
|
||||
"Cocoa",
|
||||
"-framework",
|
||||
"GLUT",
|
||||
"-framework",
|
||||
"OpenGL"
|
||||
],
|
||||
"libs": [
|
||||
"raylib"
|
||||
"configurations": [
|
||||
{
|
||||
"name": "osx-app",
|
||||
"platforms": ["osx"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"lflags": [
|
||||
"-framework",
|
||||
"IOKit",
|
||||
"-framework",
|
||||
"Cocoa",
|
||||
"-framework",
|
||||
"OpenGL"
|
||||
],
|
||||
},
|
||||
{
|
||||
"name": "linux-app",
|
||||
"platforms": ["linux"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib",
|
||||
"GL",
|
||||
"m",
|
||||
"pthread",
|
||||
"dl",
|
||||
"rt",
|
||||
"X11"
|
||||
],
|
||||
},
|
||||
{
|
||||
"name": "windows-app",
|
||||
"platforms": ["windows"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylibdll"
|
||||
],
|
||||
},
|
||||
],
|
||||
"description": "D/Raylib minimal setup",
|
||||
"license": "no license",
|
||||
"name": "ourgame"
|
||||
"name": "d-raylib-project-template"
|
||||
}
|
|
@ -1,6 +1,10 @@
|
|||
{
|
||||
"fileVersion": 1,
|
||||
"versions": {
|
||||
"raylib-d": "2.5.0"
|
||||
"ddmp": "0.0.1-0.dev.3",
|
||||
"fluent-asserts": "0.13.3",
|
||||
"libdparse": "0.14.0",
|
||||
"raylib-d": "4.0.1",
|
||||
"stdx-allocator": "2.77.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -18,19 +18,19 @@ void main() {
|
|||
|
||||
// draw
|
||||
BeginDrawing(); // clear the screen
|
||||
ClearBackground(WHITE); // set background color to WHITE
|
||||
ClearBackground(Colors.WHITE); // set background color to WHITE
|
||||
|
||||
// draw "Hello, World!"
|
||||
DrawText("Hello, World!", 10, 10, 60, BLACK);
|
||||
DrawText("Hello, World!", 10, 10, 60, Colors.BLACK);
|
||||
|
||||
// draw a square 50x50
|
||||
DrawRectangle(100, 100, 50, 50, BLACK);
|
||||
DrawRectangle(100, 100, 50, 50, Colors.BLACK);
|
||||
|
||||
// draw a circle of radius = 100
|
||||
DrawCircle(100, 200, 50, BLACK);
|
||||
DrawCircle(100, 200, 50, Colors.BLACK);
|
||||
|
||||
// draw the image
|
||||
DrawTexture(image, 100, 400, WHITE);
|
||||
DrawTexture(image, 100, 400, Colors.WHITE);
|
||||
|
||||
// display
|
||||
EndDrawing();
|
||||
|
|
|
@ -2,26 +2,52 @@
|
|||
"authors": [
|
||||
"rillki"
|
||||
],
|
||||
"copyright": "no copyright",
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"targetPath": "bin",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>3.0.4"
|
||||
"raylib-d": "~>4.0.1"
|
||||
},
|
||||
"description": "2D game",
|
||||
"lflags": [
|
||||
"-framework",
|
||||
"CoreVideo",
|
||||
"-framework",
|
||||
"IOKit",
|
||||
"-framework",
|
||||
"Cocoa",
|
||||
"-framework",
|
||||
"GLUT",
|
||||
"-framework",
|
||||
"OpenGL"
|
||||
],
|
||||
"libs": [
|
||||
"raylib"
|
||||
"configurations": [
|
||||
{
|
||||
"name": "osx-app",
|
||||
"platforms": ["osx"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"lflags": [
|
||||
"-framework",
|
||||
"IOKit",
|
||||
"-framework",
|
||||
"Cocoa",
|
||||
"-framework",
|
||||
"OpenGL"
|
||||
],
|
||||
},
|
||||
{
|
||||
"name": "linux-app",
|
||||
"platforms": ["linux"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib",
|
||||
"GL",
|
||||
"m",
|
||||
"pthread",
|
||||
"dl",
|
||||
"rt",
|
||||
"X11"
|
||||
],
|
||||
},
|
||||
{
|
||||
"name": "windows-app",
|
||||
"platforms": ["windows"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylibdll"
|
||||
],
|
||||
},
|
||||
],
|
||||
"description": "D/Raylib minimal setup",
|
||||
"license": "no license",
|
||||
"name": "ourgame"
|
||||
"name": "d-raylib-project-template"
|
||||
}
|
|
@ -1,6 +1,10 @@
|
|||
{
|
||||
"fileVersion": 1,
|
||||
"versions": {
|
||||
"raylib-d": "2.5.0"
|
||||
"ddmp": "0.0.1-0.dev.3",
|
||||
"fluent-asserts": "0.13.3",
|
||||
"libdparse": "0.14.0",
|
||||
"raylib-d": "4.0.1",
|
||||
"stdx-allocator": "2.77.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@ struct Entity {
|
|||
|
||||
// member function: no need for arguments, member variables are visible to the function
|
||||
void draw() {
|
||||
DrawTexture(tex, x, y, WHITE);
|
||||
DrawTexture(tex, x, y, Colors.WHITE);
|
||||
}
|
||||
|
||||
// constructor this() {}
|
||||
|
@ -51,7 +51,7 @@ void main() {
|
|||
|
||||
// draw
|
||||
BeginDrawing(); // clear the screen
|
||||
ClearBackground(WHITE); // set background color to WHITE
|
||||
ClearBackground(Colors.WHITE); // set background color to WHITE
|
||||
|
||||
entity.draw(); // draw entity texture to the window
|
||||
|
||||
|
|
|
@ -2,26 +2,52 @@
|
|||
"authors": [
|
||||
"rillki"
|
||||
],
|
||||
"copyright": "no copyright",
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"targetPath": "bin",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>3.0.4"
|
||||
"raylib-d": "~>4.0.1"
|
||||
},
|
||||
"description": "2D game",
|
||||
"lflags": [
|
||||
"-framework",
|
||||
"CoreVideo",
|
||||
"-framework",
|
||||
"IOKit",
|
||||
"-framework",
|
||||
"Cocoa",
|
||||
"-framework",
|
||||
"GLUT",
|
||||
"-framework",
|
||||
"OpenGL"
|
||||
],
|
||||
"libs": [
|
||||
"raylib"
|
||||
"configurations": [
|
||||
{
|
||||
"name": "osx-app",
|
||||
"platforms": ["osx"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"lflags": [
|
||||
"-framework",
|
||||
"IOKit",
|
||||
"-framework",
|
||||
"Cocoa",
|
||||
"-framework",
|
||||
"OpenGL"
|
||||
],
|
||||
},
|
||||
{
|
||||
"name": "linux-app",
|
||||
"platforms": ["linux"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib",
|
||||
"GL",
|
||||
"m",
|
||||
"pthread",
|
||||
"dl",
|
||||
"rt",
|
||||
"X11"
|
||||
],
|
||||
},
|
||||
{
|
||||
"name": "windows-app",
|
||||
"platforms": ["windows"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylibdll"
|
||||
],
|
||||
},
|
||||
],
|
||||
"description": "D/Raylib minimal setup",
|
||||
"license": "no license",
|
||||
"name": "ourgame"
|
||||
"name": "d-raylib-project-template"
|
||||
}
|
|
@ -1,6 +1,10 @@
|
|||
{
|
||||
"fileVersion": 1,
|
||||
"versions": {
|
||||
"raylib-d": "2.5.0"
|
||||
"ddmp": "0.0.1-0.dev.3",
|
||||
"fluent-asserts": "0.13.3",
|
||||
"libdparse": "0.14.0",
|
||||
"raylib-d": "4.0.1",
|
||||
"stdx-allocator": "2.77.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -23,7 +23,7 @@ void main() {
|
|||
|
||||
// draw
|
||||
BeginDrawing(); // clear the screen
|
||||
ClearBackground(WHITE); // set background color to WHITE
|
||||
ClearBackground(Colors.WHITE); // set background color to WHITE
|
||||
|
||||
entity.draw(); // draw entity texture to the window
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ struct Entity {
|
|||
|
||||
// member function: no need for arguments, member variables are visible to the function
|
||||
void draw() {
|
||||
DrawTexture(tex, x, y, WHITE);
|
||||
DrawTexture(tex, x, y, Colors.WHITE);
|
||||
}
|
||||
|
||||
// constructor this() {}
|
||||
|
|
|
@ -2,26 +2,52 @@
|
|||
"authors": [
|
||||
"rillki"
|
||||
],
|
||||
"copyright": "no copyright",
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"targetPath": "bin",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>3.0.4"
|
||||
"raylib-d": "~>4.0.1"
|
||||
},
|
||||
"description": "2D game",
|
||||
"lflags": [
|
||||
"-framework",
|
||||
"CoreVideo",
|
||||
"-framework",
|
||||
"IOKit",
|
||||
"-framework",
|
||||
"Cocoa",
|
||||
"-framework",
|
||||
"GLUT",
|
||||
"-framework",
|
||||
"OpenGL"
|
||||
],
|
||||
"libs": [
|
||||
"raylib"
|
||||
"configurations": [
|
||||
{
|
||||
"name": "osx-app",
|
||||
"platforms": ["osx"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"lflags": [
|
||||
"-framework",
|
||||
"IOKit",
|
||||
"-framework",
|
||||
"Cocoa",
|
||||
"-framework",
|
||||
"OpenGL"
|
||||
],
|
||||
},
|
||||
{
|
||||
"name": "linux-app",
|
||||
"platforms": ["linux"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib",
|
||||
"GL",
|
||||
"m",
|
||||
"pthread",
|
||||
"dl",
|
||||
"rt",
|
||||
"X11"
|
||||
],
|
||||
},
|
||||
{
|
||||
"name": "windows-app",
|
||||
"platforms": ["windows"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylibdll"
|
||||
],
|
||||
},
|
||||
],
|
||||
"description": "D/Raylib minimal setup",
|
||||
"license": "no license",
|
||||
"name": "ourgame"
|
||||
"name": "d-raylib-project-template"
|
||||
}
|
|
@ -1,6 +1,10 @@
|
|||
{
|
||||
"fileVersion": 1,
|
||||
"versions": {
|
||||
"raylib-d": "2.5.0"
|
||||
"ddmp": "0.0.1-0.dev.3",
|
||||
"fluent-asserts": "0.13.3",
|
||||
"libdparse": "0.14.0",
|
||||
"raylib-d": "4.0.1",
|
||||
"stdx-allocator": "2.77.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -105,10 +105,10 @@ void main() {
|
|||
|
||||
if(draw) { // if the game is a draw
|
||||
DrawRectangleRec(Rectangle(0, 0, WIDTH, HEIGHT), Color(0, 0, 0, 160));
|
||||
DrawText("It's a draw!", WIDTH/16, HEIGHT*2/5, 60, WHITE);
|
||||
DrawText("It's a draw!", WIDTH/16, HEIGHT*2/5, 60, Colors.WHITE);
|
||||
} else if(gameOver) { // if somebody has won
|
||||
DrawRectangleRec(Rectangle(0, 0, WIDTH, HEIGHT), Color(0, 0, 0, 160));
|
||||
DrawText("You won!", WIDTH/8, HEIGHT*2/5, 70, WHITE);
|
||||
DrawText("You won!", WIDTH/8, HEIGHT*2/5, 70, Colors.WHITE);
|
||||
}
|
||||
|
||||
EndDrawing();
|
||||
|
|
|
@ -22,14 +22,14 @@ struct Square {
|
|||
return;
|
||||
}
|
||||
|
||||
DrawTextureRec(tex, rect, Vector2(rect.x, rect.y), WHITE);
|
||||
DrawTextureRec(tex, rect, Vector2(rect.x, rect.y), Colors.WHITE);
|
||||
}
|
||||
}
|
||||
|
||||
// drawing the Tic Tac Toe grid => 2 vertical and 2 horizontal lines
|
||||
void drawGrid() {
|
||||
DrawLineEx(Vector2(WIDTH/3, 0), Vector2(WIDTH/3, HEIGHT), 3, WHITE);
|
||||
DrawLineEx(Vector2(WIDTH*2/3, 0), Vector2(WIDTH*2/3, HEIGHT), 3, WHITE);
|
||||
DrawLineEx(Vector2(0, HEIGHT/3), Vector2(WIDTH, HEIGHT/3), 3, WHITE);
|
||||
DrawLineEx(Vector2(0, HEIGHT*2/3), Vector2(WIDTH, HEIGHT*2/3), 3, WHITE);
|
||||
DrawLineEx(Vector2(WIDTH/3, 0), Vector2(WIDTH/3, HEIGHT), 3, Colors.WHITE);
|
||||
DrawLineEx(Vector2(WIDTH*2/3, 0), Vector2(WIDTH*2/3, HEIGHT), 3, Colors.WHITE);
|
||||
DrawLineEx(Vector2(0, HEIGHT/3), Vector2(WIDTH, HEIGHT/3), 3, Colors.WHITE);
|
||||
DrawLineEx(Vector2(0, HEIGHT*2/3), Vector2(WIDTH, HEIGHT*2/3), 3, Colors.WHITE);
|
||||
}
|
|
@ -2,26 +2,52 @@
|
|||
"authors": [
|
||||
"rillki"
|
||||
],
|
||||
"copyright": "no copyright",
|
||||
"copyright": "Copyright © 2021, rillki",
|
||||
"targetPath": "bin",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>3.0.4"
|
||||
"raylib-d": "~>4.0.1"
|
||||
},
|
||||
"description": "2D game",
|
||||
"lflags": [
|
||||
"-framework",
|
||||
"CoreVideo",
|
||||
"-framework",
|
||||
"IOKit",
|
||||
"-framework",
|
||||
"Cocoa",
|
||||
"-framework",
|
||||
"GLUT",
|
||||
"-framework",
|
||||
"OpenGL"
|
||||
],
|
||||
"libs": [
|
||||
"raylib"
|
||||
"configurations": [
|
||||
{
|
||||
"name": "osx-app",
|
||||
"platforms": ["osx"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib"
|
||||
],
|
||||
"lflags": [
|
||||
"-framework",
|
||||
"IOKit",
|
||||
"-framework",
|
||||
"Cocoa",
|
||||
"-framework",
|
||||
"OpenGL"
|
||||
],
|
||||
},
|
||||
{
|
||||
"name": "linux-app",
|
||||
"platforms": ["linux"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylib",
|
||||
"GL",
|
||||
"m",
|
||||
"pthread",
|
||||
"dl",
|
||||
"rt",
|
||||
"X11"
|
||||
],
|
||||
},
|
||||
{
|
||||
"name": "windows-app",
|
||||
"platforms": ["windows"],
|
||||
"targetType": "executable",
|
||||
"libs": [
|
||||
"raylibdll"
|
||||
],
|
||||
},
|
||||
],
|
||||
"description": "D/Raylib minimal setup",
|
||||
"license": "no license",
|
||||
"name": "ourgame"
|
||||
"name": "d-raylib-project-template"
|
||||
}
|
|
@ -1,6 +1,10 @@
|
|||
{
|
||||
"fileVersion": 1,
|
||||
"versions": {
|
||||
"raylib-d": "2.5.0"
|
||||
"ddmp": "0.0.1-0.dev.3",
|
||||
"fluent-asserts": "0.13.3",
|
||||
"libdparse": "0.14.0",
|
||||
"raylib-d": "4.0.1",
|
||||
"stdx-allocator": "2.77.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -35,7 +35,7 @@ struct Fruit {
|
|||
return;
|
||||
}
|
||||
|
||||
DrawRectangleRec(rect, GREEN);
|
||||
DrawRectangleRec(rect, Colors.GREEN);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -85,7 +85,7 @@ struct Snake {
|
|||
// drawing
|
||||
void render() {
|
||||
for(int i = 0; i < length; i++) {
|
||||
DrawRectangleRec(rect[i], RED);
|
||||
DrawRectangleRec(rect[i], Colors.RED);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -165,12 +165,12 @@ struct Game {
|
|||
// drawing
|
||||
void render() {
|
||||
BeginDrawing();
|
||||
ClearBackground(WHITE);
|
||||
ClearBackground(Colors.WHITE);
|
||||
|
||||
// drawing the grid
|
||||
for(int i = 1; i < windowSize/blockSize; i++) {
|
||||
DrawLineEx(Vector2(blockSize*i, 0), Vector2(blockSize*i, windowSize), 1, BLACK);
|
||||
DrawLineEx(Vector2(0, blockSize*i), Vector2(windowSize, blockSize*i), 1, BLACK);
|
||||
DrawLineEx(Vector2(blockSize*i, 0), Vector2(blockSize*i, windowSize), 1, Colors.BLACK);
|
||||
DrawLineEx(Vector2(0, blockSize*i), Vector2(windowSize, blockSize*i), 1, Colors.BLACK);
|
||||
}
|
||||
|
||||
fruit.render();
|
||||
|
@ -178,7 +178,7 @@ struct Game {
|
|||
|
||||
if(gameOver) {
|
||||
DrawRectangleRec(Rectangle(0, 0, windowSize, windowSize), Color(0, 0, 0, 150));
|
||||
DrawText("Game Over!", 30, windowSize/2-48, 48, WHITE);
|
||||
DrawText("Game Over!", 30, windowSize/2-48, 48, Colors.WHITE);
|
||||
}
|
||||
|
||||
DrawFPS(10, 10);
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
"copyright": "Copyright © 2021, rillki",
|
||||
"targetPath": "bin",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>3.1.0"
|
||||
"raylib-d": "~>4.0.1"
|
||||
},
|
||||
"configurations": [
|
||||
{
|
||||
|
@ -48,6 +48,6 @@
|
|||
},
|
||||
],
|
||||
"description": "D/Raylib minimal setup",
|
||||
"license": "MIT",
|
||||
"license": "no license",
|
||||
"name": "d-raylib-project-template"
|
||||
}
|
|
@ -4,7 +4,7 @@
|
|||
"ddmp": "0.0.1-0.dev.3",
|
||||
"fluent-asserts": "0.13.3",
|
||||
"libdparse": "0.14.0",
|
||||
"raylib-d": "3.0.3",
|
||||
"raylib-d": "4.0.1",
|
||||
"stdx-allocator": "2.77.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
"copyright": "Copyright © 2021, rillki",
|
||||
"targetPath": "bin",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>3.1.0"
|
||||
"raylib-d": "~>4.0.1"
|
||||
},
|
||||
"configurations": [
|
||||
{
|
||||
|
@ -48,6 +48,6 @@
|
|||
},
|
||||
],
|
||||
"description": "D/Raylib minimal setup",
|
||||
"license": "MIT",
|
||||
"license": "no license",
|
||||
"name": "d-raylib-project-template"
|
||||
}
|
|
@ -4,7 +4,7 @@
|
|||
"ddmp": "0.0.1-0.dev.3",
|
||||
"fluent-asserts": "0.13.3",
|
||||
"libdparse": "0.14.0",
|
||||
"raylib-d": "3.0.4",
|
||||
"raylib-d": "4.0.1",
|
||||
"stdx-allocator": "2.77.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
"copyright": "Copyright © 2021, rillki",
|
||||
"targetPath": "bin",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>3.1.0"
|
||||
"raylib-d": "~>4.0.1"
|
||||
},
|
||||
"configurations": [
|
||||
{
|
||||
|
@ -48,6 +48,6 @@
|
|||
},
|
||||
],
|
||||
"description": "D/Raylib minimal setup",
|
||||
"license": "MIT",
|
||||
"license": "no license",
|
||||
"name": "d-raylib-project-template"
|
||||
}
|
|
@ -4,8 +4,7 @@
|
|||
"ddmp": "0.0.1-0.dev.3",
|
||||
"fluent-asserts": "0.13.3",
|
||||
"libdparse": "0.14.0",
|
||||
"raylib-d": "3.0.4",
|
||||
"raylib-d2": "3.1.0",
|
||||
"raylib-d": "4.0.1",
|
||||
"stdx-allocator": "2.77.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
"copyright": "Copyright © 2021, rillki",
|
||||
"targetPath": "bin",
|
||||
"dependencies": {
|
||||
"raylib-d": "~>3.1.0"
|
||||
"raylib-d": "~>4.0.1"
|
||||
},
|
||||
"configurations": [
|
||||
{
|
||||
|
@ -48,6 +48,6 @@
|
|||
},
|
||||
],
|
||||
"description": "D/Raylib minimal setup",
|
||||
"license": "MIT",
|
||||
"license": "no license",
|
||||
"name": "d-raylib-project-template"
|
||||
}
|
|
@ -4,8 +4,7 @@
|
|||
"ddmp": "0.0.1-0.dev.3",
|
||||
"fluent-asserts": "0.13.3",
|
||||
"libdparse": "0.14.0",
|
||||
"raylib-d": "3.0.4",
|
||||
"raylib-d2": "3.1.0",
|
||||
"raylib-d": "4.0.1",
|
||||
"stdx-allocator": "2.77.5"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue