Zen 0.3.0
Loading...
Searching...
No Matches
Zenith.cpp
1#include "ZEN_Log.h"
2#include "editor/src/GameLayer.h"
3#include "zen.h"
4
5class Zenith : public Zen::Application {
6public:
7 Zenith() {
8 ZEN_LOG_INFO("Zenith constucted");
9 pushLayer(new GameLayer());
10 }
11
12private:
13};
14
15Zen::Application *Zen::CreateApplication() { return new Zenith(); };