CurtaSim/CurtaSim/curtaUI.h
2014-11-18 21:06:31 -08:00

19 lines
278 B
C

//
// Author: Jeremy Rand
// Date: July 20, 2012
//
// This is the interface for the Curta emulator UI.
//
#include <stdbool.h>
#ifndef _CURTAUI_H
#define _CURTAUI_H
extern void initUI(void);
extern void shutdownUI(void);
extern bool processNextEvent(void);
#endif