diff options
| author | kotorifan <kotorifan05@gmail.com> | 2026-04-14 23:36:25 +0200 |
|---|---|---|
| committer | kotorifan <kotorifan05@gmail.com> | 2026-04-14 23:36:25 +0200 |
| commit | b38ff486555a16840fd04caaa3cbe38e37b2b9ae (patch) | |
| tree | d2934639a48ece24c3dfe1201456568f4c593971 | |
| parent | 8c7882de53f14e522d6ae574ed21b80527772c84 (diff) | |
| download | trashbinphysics-b38ff486555a16840fd04caaa3cbe38e37b2b9ae.tar.gz | |
Added new files
| -rw-r--r-- | src/common.h | 10 | ||||
| -rw-r--r-- | src/graphics.h | 2 | ||||
| -rw-r--r-- | src/main.c | 13 | ||||
| -rw-r--r-- | src/physics.h | 2 |
4 files changed, 27 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h new file mode 100644 index 0000000..4b0cdc8 --- /dev/null +++ b/src/common.h @@ -0,0 +1,10 @@ +// common.h +#pragma once +#include <stdint.h> + +typedef u8 uint8_t_least_t +typedef i8 int8_t_least_t +typedef u16 uint16_least_t +typedef i16 int16_least_t +typedef u32 uint32_least_t +typedef i32 int32_least_t diff --git a/src/graphics.h b/src/graphics.h new file mode 100644 index 0000000..297fbbd --- /dev/null +++ b/src/graphics.h @@ -0,0 +1,2 @@ +// graphics.h +#pragma once 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; +} diff --git a/src/physics.h b/src/physics.h new file mode 100644 index 0000000..7c92e1a --- /dev/null +++ b/src/physics.h @@ -0,0 +1,2 @@ +// physics.h +#pragma once |
