1#ifndef INCLUDE_SIMPLEEXAMPLE_SIMPLEEXAMPLE_H_
2#define INCLUDE_SIMPLEEXAMPLE_SIMPLEEXAMPLE_H_
64 std::string
name =
"SimpleExample";
65 [[nodiscard]]
const std::string &
getName()
override {
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.