25 lines
218 B
C++
25 lines
218 B
C++
#ifndef LIME_APP_APPLICATION_H
|
|
#define LIME_APP_APPLICATION_H
|
|
|
|
|
|
namespace lime {
|
|
|
|
|
|
class Application {
|
|
|
|
|
|
public:
|
|
|
|
virtual int Exec () = 0;
|
|
|
|
|
|
};
|
|
|
|
|
|
Application* CreateApplication ();
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif |