summaryrefslogtreecommitdiffhomepage
path: root/src/second.c
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2024-05-11 21:30:23 -0400
committerrealtradam <[email protected]>2024-05-11 21:30:23 -0400
commit8855c3de33c487e09b6a8fd474b0dd351ab3581c (patch)
tree37a6a5190d51375ea56c8a6012e1986e159dd168 /src/second.c
parentdf5f113e746a9c6941ccb7c2076aa52ece33923e (diff)
downloadtojam2024-8855c3de33c487e09b6a8fd474b0dd351ab3581c.tar.gz
tojam2024-8855c3de33c487e09b6a8fd474b0dd351ab3581c.zip
split screen
Diffstat (limited to 'src/second.c')
-rw-r--r--src/second.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/second.c b/src/second.c
deleted file mode 100644
index d63296e..0000000
--- a/src/second.c
+++ /dev/null
@@ -1,17 +0,0 @@
-
-#include <stdio.h>
-#include "second.h"
-#include <raylib.h>
-
-void test(void)
-{
- //TraceLog(3, "Test Worked\n");
- for(float i = -2; i <= 2; ++i)
- {
- for(float j = -2; j <= 2; ++j)
- {
- //DrawCubeTexture(texture, (Vector3){ i, 0.0f, j }, 1.0f, 1.0f, 1.0f, WHITE);
- DrawCube((Vector3){ i, 0.0f, j }, 0.5f, 0.5f, 0.5f, RED);
- }
- }
-}