Can't focus right now

This commit is contained in:
2026-05-01 12:29:44 +10:00
parent 72e2d51cb7
commit 502dab670e
4 changed files with 41 additions and 23 deletions
+17
View File
@@ -0,0 +1,17 @@
#pragma once
#include "raylib.h"
//sprites loaded from disk
typedef struct MonsterSprite {
Texture2D texture;
Rectangle rect;
} MonsterSprite;
//Monsters loaded from scripts
typedef struct MonsterData {
MonsterSprite* sprite;
Vector2 position;
int health;
} MonsterData;