Potato Engine
Loading...
Searching...
No Matches
DebugInfo.hpp
Go to the documentation of this file.
1
2#pragma once
3
5
6struct Vector2;
7
12class DebugInfo : public Widget
13{
14public:
15 DebugInfo(std::string UID);
16 ~DebugInfo();
17
18protected:
19 virtual void Tick(float dt) override;
20
21};
virtual void Tick(float dt) override
Update tick event.
Definition DebugInfo.cpp:29
Widget(std::string UID)
Constructs widget.
Definition Widget.cpp:7
Standard 2-dimensional vector.
Definition Vector2.hpp:11