This commit is contained in:
Luka Jankovic 2025-07-26 23:03:27 +02:00
parent 162e7a7fb0
commit 7189f28c00
8 changed files with 139 additions and 33 deletions

View file

@ -19,8 +19,9 @@
#ifndef KUBO_WALL_H
#define KUBO_WALL_H
#include <stdlib.h>
#include <raylib.h>
#include <stdio.h>
#include <stdlib.h>
#include "kubo_dynarray.h"
@ -46,7 +47,7 @@ void kubo_wall_cleanup(struct kubo_wall *wall);
bool kubo_wall_add_vertex(struct kubo_wall *wall, Vector2 vec);
Vector2 kubo_wall_get_vertex(struct kubo_wall *wall, size_t index);
void kubo_wall_render(struct kubo_wall *wall, bool select);
void kubo_wall_render(struct kubo_wall *wall, bool select, int offset_x,
int offset_y);
#endif