Compare commits

...

10 Commits

Author SHA1 Message Date
5a4cd2eb83 Add .gitignore 2026-06-12 13:05:13 -04:00
0927a0a531 Update Makefile 2026-06-12 13:02:08 -04:00
20706dc060 Delete my_game 2026-06-12 12:58:45 -04:00
1ccdba57a5 Delete ray 2026-06-12 12:58:27 -04:00
3298638725 Delete a.out 2026-06-12 12:58:08 -04:00
15b2066ea2 Update README.md 2026-06-12 12:57:44 -04:00
a79815eb7b changed name 2026-06-12 12:26:44 -04:00
c24535ad67 Update README.md 2026-06-12 12:25:14 -04:00
7e48cd8496 Add README.md 2026-06-12 09:52:39 -04:00
0b357330a6 Some stuff and a makefile 2026-06-11 07:33:37 -04:00
6 changed files with 36 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.vscode/

21
Makefile Normal file
View File

@@ -0,0 +1,21 @@
# 1. Variables (to avoid repeating yourself)
CC = gcc
CFLAGS = -Iinclude
LDFLAGS = -Llib -lraylib -lGL -lm -lpthread -ldl -lrt -lX11
# 2. Default target (runs when you just type 'make')
default: visual text
# 3. Specific build targets
visual: ray.c
$(CC) ray.c -o ray.out $(CFLAGS) $(LDFLAGS)
text: text_physics.c
$(CC) text_physics.c -o text_physics.out $(CFLAGS) $(LDFLAGS)
# 4. Cleanup targets (all mapped to the same action)
clean clear rm remove wipe:
rm -f ray.out text_physics.out
# 5. Phony targets (tells make these are actions, not actual files)
.PHONY: default visual text clean clear rm remove wipe

14
README.md Normal file
View File

@@ -0,0 +1,14 @@
# WrldBox Sandbox Simulator
**WrldBox** is a work-in-progress sandbox simulator made by Team wholeworldcoding.
Currently, it is in a prototype/experimental stage:
- Rendering is extremely buggy. `ray.c` experiences orientation problems and is vibe coded and unchecked.
The only usuable product is `text_physics.c`. This is a text physics simulator that simulates 2D physics.
Expect more updates. This has huge potential to become the next big `wholeworldcoding` project.
> [!TIP]
> Don't expect anything to work!

BIN
a.out

Binary file not shown.

BIN
ray

Binary file not shown.