diff options
Diffstat (limited to 'src/second.c')
| -rw-r--r-- | src/second.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/second.c b/src/second.c new file mode 100644 index 0000000..d63296e --- /dev/null +++ b/src/second.c @@ -0,0 +1,17 @@ + +#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); + } + } +} |
