freak-engine/src/wall/init.c

9 lines
178 B
C

#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, C_DARK);
}