Files
lime/project/include/app/Application.h
2014-06-19 00:34:14 -07:00

32 lines
311 B
C++

#ifndef LIME_APP_APPLICATION_H
#define LIME_APP_APPLICATION_H
#include <hx/CFFI.h>
namespace lime {
class Application {
public:
static double GetTicks ();
static AutoGCRoot* callback;
virtual int Exec () = 0;
};
Application* CreateApplication ();
}
#endif