15 lines
508 B
C++
15 lines
508 B
C++
//
|
|
// Created by EmsiaetKadosh on 25-1-14.
|
|
//
|
|
|
|
#pragma once
|
|
#include "Renderer.h"
|
|
|
|
class Hud final : public IRenderable, public ITickable {
|
|
public:
|
|
void render() const noexcept override;
|
|
void tick() noexcept override;
|
|
void onResize() noexcept {}
|
|
};
|
|
|