mirror of
https://github.com/zetaPRIME/libstarlight.git
synced 2025-06-26 05:32:46 +00:00
20 lines
394 B
C++
20 lines
394 B
C++
#pragma once
|
|
#include "starlight/_global.h"
|
|
|
|
#include "starlight/ui/UICanvas.h"
|
|
|
|
namespace starlight {
|
|
namespace ui {
|
|
class TopScreenCanvas : public UICanvas {
|
|
public:
|
|
TopScreenCanvas();
|
|
~TopScreenCanvas() { }
|
|
|
|
void Update() override;
|
|
void PreDraw() override;
|
|
void Draw() override;
|
|
};
|
|
}
|
|
}
|
|
|