Hi!I'm looking for testers for my game engine(specially for meta-horror or horror).
It have built-in entity system,and have special functions for meta-horror/horror.
Link:
https://tex337.itch.io/raw2d/
Example:
#include "raw2d.h"
#include <stdio.h>
#include <stdlib.h>
void update() {
DrawEntities();
}
void beforexit() {
/* Meta horror functions */
RawShowMessageBox("Raw2D","Test");
RawGdiInvert();
RawGlitchScreen(50);
RawClipCursor(true);
}
int main() {
InitRaw2D("Test",500,500,NONE);
RunRaw2D(update,beforexit);
}
Compile by clicking build.bat(MinGW):