freak-engine/include/wall.h

9 lines
144 B
C
Raw Normal View History

2021-06-11 01:32:47 +02:00
#pragma once
#include "entity.h"
struct Wall {
struct Entity;
};
void wall_init(struct Wall *restrict, int x, int y, int width, int height);