aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--src/main.cpp15
2 files changed, 13 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 13ab15e..5bfc6d1 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
CC=g++
CFLAGS=-Wall -Wextra -Werror -Wswitch-enum -ggdb -fsanitize=address -fsanitize=undefined -std=c++17
-LIBS=
+LIBS=-lm -lraylib
ARGS=
OUT=main.out
diff --git a/src/main.cpp b/src/main.cpp
index 1c5912b..68a69b9 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -9,12 +9,21 @@
* Description: Entrypoint
*/
-#include <iostream>
+#include <raylib.h>
-using std::cout, std::endl;
+#define WIDTH 800
+#define HEIGHT 600
int main(void)
{
- cout << "Hello, world!" << endl;
+ InitWindow(WIDTH, HEIGHT, "snek");
+ while (!WindowShouldClose())
+ {
+ BeginDrawing();
+ ClearBackground(BLACK);
+ DrawTriangle({400, 0}, {100, 300}, {700, 300}, RED);
+ EndDrawing();
+ }
+ CloseWindow();
return 0;
}