galaxy 1.0.0
Real-Time C++23 Game Programming Framework. Built on data-driven design principles and agile software engineering.
Loading...
Searching...
No Matches
State.cpp
Go to the documentation of this file.
1
7
8#include "State.hpp"
9
10namespace galaxy
11{
12 State::State(const std::string& name) noexcept
13 : m_name {name}
14 {
15 }
16
17 const std::string& State::name() const noexcept
18 {
19 return m_name;
20 }
21} // namespace galaxy
State()=delete
Constructor.
const std::string & name() const noexcept
Get state name.
Definition State.cpp:17
std::string m_name
Name for debug purposes.
Definition State.hpp:76
Animated.cpp galaxy.
Definition Animated.cpp:16