stuff
This commit is contained in:
parent
1006b231f0
commit
0c0cfef186
28 changed files with 220 additions and 331 deletions
19
game/inc/suic_app.h
Normal file
19
game/inc/suic_app.h
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#pragma once
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
|
||||
void suic_runtime_init(void);
|
||||
void suic_runtime_shutdown(void);
|
||||
|
||||
void suic_app_init(int width, int height, const char *title);
|
||||
bool suic_app_should_close(void);
|
||||
void suic_app_frame_begin(void);
|
||||
void suic_app_frame_end(void);
|
||||
void suic_app_shutdown(void);
|
||||
|
||||
void suic_draw_hello(void);
|
||||
|
||||
const char *suic_item_name(uint8_t t);
|
||||
struct Color *suic_apply_directional_lighting(struct Color *baseColor,
|
||||
struct Vector3 *normal,
|
||||
struct DirectionalLight *light);
|
||||
Loading…
Add table
Add a link
Reference in a new issue