Skip to content

Commit

Permalink
windows test
Browse files Browse the repository at this point in the history
  • Loading branch information
psychicgoldfish committed Oct 27, 2024
1 parent dd02ba8 commit 702e2c5
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
21 changes: 21 additions & 0 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"windowsSdkVersion": "10.0.19041.0",
"compilerPath": "cl.exe",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "windows-msvc-x64"
}
],
"version": 4
}
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"files.associations": {
"stdio.h": "c"
}
}
2 changes: 1 addition & 1 deletion src/raylib_game.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ void UpdateDrawFrame(void)
ClearBackground(RAYWHITE);

// TODO: Draw your game screen here
DrawText("Welcome to raylib NEXT gamejam!", 150, 140, 30, BLACK);
DrawText("windows test", 150, 140, 30, BLACK);
DrawRectangleLinesEx((Rectangle){ 0, 0, screenWidth, screenHeight }, 16, BLACK);

EndTextureMode();
Expand Down

0 comments on commit 702e2c5

Please sign in to comment.