aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorkotorifan <kotorifan05@gmail.com>2026-04-14 23:36:25 +0200
committerkotorifan <kotorifan05@gmail.com>2026-04-14 23:36:25 +0200
commitb38ff486555a16840fd04caaa3cbe38e37b2b9ae (patch)
treed2934639a48ece24c3dfe1201456568f4c593971 /src/main.c
parent8c7882de53f14e522d6ae574ed21b80527772c84 (diff)
downloadtrashbinphysics-b38ff486555a16840fd04caaa3cbe38e37b2b9ae.tar.gz
Added new files
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
new file mode 100644
index 0000000..cdd077c
--- /dev/null
+++ b/src/main.c
@@ -0,0 +1,13 @@
+// main.c
+#include <stdio.h>
+#include <stdlib.h>
+#include <raylib.h>
+
+#include "common.h"
+#include "graphics.h"
+#include "physics.h"
+
+int main(void)
+{
+ return EXIT_SUCCESS;
+}