Init, drawing walls semi-works

This commit is contained in:
Luka Jankovic 2025-06-15 17:11:20 +02:00
parent befe4a84c9
commit 09cc69d38d
8 changed files with 287 additions and 0 deletions

22
kubo_window.h Normal file
View file

@ -0,0 +1,22 @@
#ifndef KUBO_WINDOW_H
#define KUBO_WINDOW_H
#include <stdio.h>
#include <raylib.h>
#include "kubo_context.h"
#define KUBO_WINDOW_WIDTH 1000
#define KUBO_WINDOW_HEIGHT 800
void kubo_window_init(struct kubo_context *context);
void kubo_window_cleanup(struct kubo_context *context);
bool kubo_window_should_close(struct kubo_context *context);
void kubo_window_tick(struct kubo_context *context);
void kubo_window_render(struct kubo_context *context);
void kubo_window_input(struct kubo_context *context);
#endif