timesynk/tile_editor/stubs.h

14 lines
471 B
C

#ifndef STUBS_H
#define STUBS_H
/**** stubs.h
This file defines the interface, and network stubs. During linking, the functions declared in this file will be linked to their compiled interface, or network functions.
****/
// loads up the needed resources for the interface and calls appropriate funcs
int interfaceInit();
// loop for handling network, user input, etc.
int interfaceLoop();
// cleans up resources allocated in the interface
void interfaceClose();
#endif