Skip to content

Commit

Permalink
include engine header. whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCandianVendingMachine committed Sep 15, 2023
1 parent 9a0a9f9 commit 54801c2
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions include/engine.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#ifndef ENGINE_H
#define ENGINE_H

#define ENGINE_NAME "Vestige"

#include "shutdown_reasons.h"

typedef struct {
ShutdownReason shutdown_reason;
} Engine;

extern Engine* ENGINE;

void engine_start(void);
void engine_crash(ShutdownReason reason);
int engine_stop(void);

#endif

0 comments on commit 54801c2

Please sign in to comment.