freak-engine/src/wall/init.c

10 lines
207 B
C

#include "layers.h"
#include "wall.h"
#include <gint/display.h>
void
wall_init(struct Wall *restrict w, int x, int y, int width, int height)
{
entity_init(w, x, y, 0, 0, width, height, L_SOLID, C_DARK);
}