restore: whole project

This commit is contained in:
2026-03-05 15:11:09 +01:00
parent 321c661bb8
commit f307470f56
57 changed files with 1270 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#ifndef INPUT_SYSTEM_H
#define INPUT_SYSTEM_H
#include <stdlib.h>
#include "raylib.h"
#include "input.h"
#include "vector.h"
#include "entity.h"
void InputSystemUpdate(Entity *entities, InputComponent *inputs, size_t count);
#endif