diff --git a/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.json b/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.json index 384bc6c..e335a0b 100644 --- a/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.json +++ b/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.json @@ -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" } \ No newline at end of file diff --git a/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.selections.json b/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.selections.json index 9d49892..a5f3bf7 100644 --- a/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.selections.json +++ b/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.selections.json @@ -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" } } diff --git a/lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/dub.json b/lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/dub.json index 384bc6c..e335a0b 100644 --- a/lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/dub.json +++ b/lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/dub.json @@ -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" } \ No newline at end of file diff --git a/lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/dub.selections.json b/lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/dub.selections.json index 9d49892..a5f3bf7 100644 --- a/lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/dub.selections.json +++ b/lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/dub.selections.json @@ -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" } } diff --git a/lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/source/app.d b/lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/source/app.d index 361a9ef..21e156b 100644 --- a/lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/source/app.d +++ b/lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/source/app.d @@ -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(); diff --git a/lesson#12.1 - Structs/raylib_firstWindow/dub.json b/lesson#12.1 - Structs/raylib_firstWindow/dub.json index 384bc6c..e335a0b 100644 --- a/lesson#12.1 - Structs/raylib_firstWindow/dub.json +++ b/lesson#12.1 - Structs/raylib_firstWindow/dub.json @@ -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" } \ No newline at end of file diff --git a/lesson#12.1 - Structs/raylib_firstWindow/dub.selections.json b/lesson#12.1 - Structs/raylib_firstWindow/dub.selections.json index 9d49892..a5f3bf7 100644 --- a/lesson#12.1 - Structs/raylib_firstWindow/dub.selections.json +++ b/lesson#12.1 - Structs/raylib_firstWindow/dub.selections.json @@ -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" } } diff --git a/lesson#12.1 - Structs/raylib_firstWindow/source/app.d b/lesson#12.1 - Structs/raylib_firstWindow/source/app.d index 2cba66a..907ecb7 100644 --- a/lesson#12.1 - Structs/raylib_firstWindow/source/app.d +++ b/lesson#12.1 - Structs/raylib_firstWindow/source/app.d @@ -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 diff --git a/lesson#12.2 - Modules/raylib_firstWindow/dub.json b/lesson#12.2 - Modules/raylib_firstWindow/dub.json index 384bc6c..e335a0b 100644 --- a/lesson#12.2 - Modules/raylib_firstWindow/dub.json +++ b/lesson#12.2 - Modules/raylib_firstWindow/dub.json @@ -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" } \ No newline at end of file diff --git a/lesson#12.2 - Modules/raylib_firstWindow/dub.selections.json b/lesson#12.2 - Modules/raylib_firstWindow/dub.selections.json index 9d49892..a5f3bf7 100644 --- a/lesson#12.2 - Modules/raylib_firstWindow/dub.selections.json +++ b/lesson#12.2 - Modules/raylib_firstWindow/dub.selections.json @@ -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" } } diff --git a/lesson#12.2 - Modules/raylib_firstWindow/source/app.d b/lesson#12.2 - Modules/raylib_firstWindow/source/app.d index ba0cac1..7b0fc14 100644 --- a/lesson#12.2 - Modules/raylib_firstWindow/source/app.d +++ b/lesson#12.2 - Modules/raylib_firstWindow/source/app.d @@ -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 diff --git a/lesson#12.2 - Modules/raylib_firstWindow/source/test.d b/lesson#12.2 - Modules/raylib_firstWindow/source/test.d index feb78a5..855ed8e 100644 --- a/lesson#12.2 - Modules/raylib_firstWindow/source/test.d +++ b/lesson#12.2 - Modules/raylib_firstWindow/source/test.d @@ -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() {} diff --git a/lesson#13 - 2D Tic Tac Toe/ticTacToe/dub.json b/lesson#13 - 2D Tic Tac Toe/ticTacToe/dub.json index 384bc6c..e335a0b 100644 --- a/lesson#13 - 2D Tic Tac Toe/ticTacToe/dub.json +++ b/lesson#13 - 2D Tic Tac Toe/ticTacToe/dub.json @@ -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" } \ No newline at end of file diff --git a/lesson#13 - 2D Tic Tac Toe/ticTacToe/dub.selections.json b/lesson#13 - 2D Tic Tac Toe/ticTacToe/dub.selections.json index 9d49892..a5f3bf7 100644 --- a/lesson#13 - 2D Tic Tac Toe/ticTacToe/dub.selections.json +++ b/lesson#13 - 2D Tic Tac Toe/ticTacToe/dub.selections.json @@ -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" } } diff --git a/lesson#13 - 2D Tic Tac Toe/ticTacToe/source/app.d b/lesson#13 - 2D Tic Tac Toe/ticTacToe/source/app.d index 14b32aa..a6fcd39 100644 --- a/lesson#13 - 2D Tic Tac Toe/ticTacToe/source/app.d +++ b/lesson#13 - 2D Tic Tac Toe/ticTacToe/source/app.d @@ -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(); diff --git a/lesson#13 - 2D Tic Tac Toe/ticTacToe/source/data.d b/lesson#13 - 2D Tic Tac Toe/ticTacToe/source/data.d index a006ba2..136a585 100644 --- a/lesson#13 - 2D Tic Tac Toe/ticTacToe/source/data.d +++ b/lesson#13 - 2D Tic Tac Toe/ticTacToe/source/data.d @@ -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); } \ No newline at end of file diff --git a/lesson#14 - 2D Snake Game/dub.json b/lesson#14 - 2D Snake Game/dub.json index 384bc6c..e335a0b 100644 --- a/lesson#14 - 2D Snake Game/dub.json +++ b/lesson#14 - 2D Snake Game/dub.json @@ -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" } \ No newline at end of file diff --git a/lesson#14 - 2D Snake Game/dub.selections.json b/lesson#14 - 2D Snake Game/dub.selections.json index 9d49892..a5f3bf7 100644 --- a/lesson#14 - 2D Snake Game/dub.selections.json +++ b/lesson#14 - 2D Snake Game/dub.selections.json @@ -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" } } diff --git a/lesson#14 - 2D Snake Game/source/app.d b/lesson#14 - 2D Snake Game/source/app.d index 2479516..f38c63a 100644 --- a/lesson#14 - 2D Snake Game/source/app.d +++ b/lesson#14 - 2D Snake Game/source/app.d @@ -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); diff --git a/lesson#22 - Singleton design pattern/ourGame/dub.json b/lesson#22 - Singleton design pattern/ourGame/dub.json index b6b4967..e335a0b 100644 --- a/lesson#22 - Singleton design pattern/ourGame/dub.json +++ b/lesson#22 - Singleton design pattern/ourGame/dub.json @@ -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" } \ No newline at end of file diff --git a/lesson#22 - Singleton design pattern/ourGame/dub.selections.json b/lesson#22 - Singleton design pattern/ourGame/dub.selections.json index 6c4a00d..a5f3bf7 100644 --- a/lesson#22 - Singleton design pattern/ourGame/dub.selections.json +++ b/lesson#22 - Singleton design pattern/ourGame/dub.selections.json @@ -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" } } diff --git a/lesson#23 - State design pattern/ourGame/dub.json b/lesson#23 - State design pattern/ourGame/dub.json index b6b4967..e335a0b 100644 --- a/lesson#23 - State design pattern/ourGame/dub.json +++ b/lesson#23 - State design pattern/ourGame/dub.json @@ -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" } \ No newline at end of file diff --git a/lesson#23 - State design pattern/ourGame/dub.selections.json b/lesson#23 - State design pattern/ourGame/dub.selections.json index f85b320..a5f3bf7 100644 --- a/lesson#23 - State design pattern/ourGame/dub.selections.json +++ b/lesson#23 - State design pattern/ourGame/dub.selections.json @@ -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" } } diff --git a/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.json b/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.json index b6b4967..e335a0b 100644 --- a/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.json +++ b/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.json @@ -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" } \ No newline at end of file diff --git a/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.selections.json b/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.selections.json index 19c791c..a5f3bf7 100644 --- a/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.selections.json +++ b/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.selections.json @@ -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" } } diff --git a/lesson#26 - Drawing a player/ourGame/dub.json b/lesson#26 - Drawing a player/ourGame/dub.json index b6b4967..e335a0b 100644 --- a/lesson#26 - Drawing a player/ourGame/dub.json +++ b/lesson#26 - Drawing a player/ourGame/dub.json @@ -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" } \ No newline at end of file diff --git a/lesson#26 - Drawing a player/ourGame/dub.selections.json b/lesson#26 - Drawing a player/ourGame/dub.selections.json index 19c791c..a5f3bf7 100644 --- a/lesson#26 - Drawing a player/ourGame/dub.selections.json +++ b/lesson#26 - Drawing a player/ourGame/dub.selections.json @@ -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" } }