blob: 4af5865633b10d4661ab0f74cbde0a7d7f7048de (
plain)
1
2
3
4
5
6
7
8
9
|
#pragma once
// every function call for drawing the screen goes here.
#include "engine/maths.h"
#include <stdint.h>
uint16_t hh_world_to_tile(vec2 pos);
void hh_draw_screen(vec2 viewport);
|