freak-engine/include/wall.h

9 lines
136 B
C
Raw Normal View History

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