Fumofumotris/source/fumoengine/fumoengine.h
Julia 2b15552401 a
a
2024-05-06 22:29:10 -05:00

24 lines
337 B
C

#pragma once
#include "ctrl.h"
#include "event.h"
#include "fumocommon.h"
#include "input.h"
struct FumoGame {
struct Controller ctrl;
struct InputHandle input_hand;
struct Event start;
struct Event draw;
struct Event update;
nsec time;
};
void Panic(char *message);
bool FumoInit(struct FumoGame *game);