mirror of
https://github.com/zetaPRIME/libstarlight.git
synced 2025-06-26 13:42:46 +00:00
18 lines
289 B
C
18 lines
289 B
C
|
#pragma once
|
||
|
|
||
|
#include "starlight/Application.h"
|
||
|
|
||
|
using starlight::Application;
|
||
|
|
||
|
class Core : public Application {
|
||
|
public:
|
||
|
Core() : Application("starlauncher") { }
|
||
|
~Core() override = default;
|
||
|
|
||
|
void Init() override;
|
||
|
void End() override;
|
||
|
void Update() override;
|
||
|
|
||
|
};
|
||
|
|