Ankush's Garage
A collection of stuff made by Ankush Roy
Loading...
Searching...
No Matches
SimpleExample.h
Go to the documentation of this file.
1#ifndef INCLUDE_SIMPLEEXAMPLE_SIMPLEEXAMPLE_H_
2#define INCLUDE_SIMPLEEXAMPLE_SIMPLEEXAMPLE_H_
3
5
14{
15
25 bool Init() override;
26
37 bool Update() override;
38
50 bool Draw() override;
51
61 void Quit() override;
62
63
64 std::string name = "SimpleExample";
65 [[nodiscard]] const std::string &getName() override {
66 return name;
67 }
68};
69
70#endif // INCLUDE_SIMPLEEXAMPLE_SIMPLEEXAMPLE_H_
Structure representing an project application instance.
Definition BaseProject.h:16
bool Update() override
Updates the example.
Definition SimpleExample.cpp:13
std::string name
Definition SimpleExample.h:64
bool Init() override
Initializes the example.
Definition SimpleExample.cpp:7
bool Draw() override
Renders the example.
Definition SimpleExample.cpp:18
void Quit() override
Cleans up resources.
Definition SimpleExample.cpp:42
const std::string & getName() override
Definition SimpleExample.h:65
A basic example/template for structuring graphics-related code.