28 lines
256 B
C++
28 lines
256 B
C++
#ifndef LIME_APP_WINDOW_H
|
|
#define LIME_APP_WINDOW_H
|
|
|
|
|
|
#include <app/Application.h>
|
|
|
|
|
|
namespace lime {
|
|
|
|
|
|
class Window {
|
|
|
|
|
|
public:
|
|
|
|
Application* currentApplication;
|
|
|
|
|
|
};
|
|
|
|
|
|
Window* CreateWindow (Application* application);
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif |