hyperultra/src/exit.c

17 lines
275 B
C

#include "entityimpl.h"
IMPL_UPDATE()
}
IMPL_DRAW()
LZY_DrawSetColor(BLACK);
LZY_DrawRect(this->pos[0] - this->width / 2,
this->pos[1] - this->height / 2,
this->width, this->height);
}
IMPL_INIT(exit)
this->width = 12;
this->height = 12;
}