hyperultra/src/exit.c

17 lines
273 B
C
Raw Normal View History

2023-03-18 21:54:01 +01:00
#include "entityimpl.h"
2023-03-19 07:16:10 +01:00
#include "rotrect.h"
2023-03-17 20:51:15 +01:00
2023-03-18 23:40:10 +01:00
IMPL_UPDATE() {
} IMPL_END
2023-03-18 21:54:01 +01:00
2023-03-18 23:40:10 +01:00
IMPL_DRAW() {
2023-03-17 20:51:15 +01:00
LZY_DrawSetColor(BLACK);
2023-03-20 18:29:06 +01:00
rotrect(this->pos[0], this->pos[1],
2023-03-19 07:16:10 +01:00
this->width, this->height, 0.2);
2023-03-18 23:40:10 +01:00
} IMPL_END
2023-03-17 20:51:15 +01:00
2023-03-18 23:40:10 +01:00
IMPL_INIT(exit) {
2023-03-17 20:51:15 +01:00
this->width = 12;
this->height = 12;
2023-03-18 23:40:10 +01:00
} IMPL_END