MassBuilderManager: use Magnum types.
This commit is contained in:
parent
445c8873ae
commit
6886334d61
1 changed files with 5 additions and 3 deletions
|
@ -16,11 +16,13 @@
|
||||||
// You should have received a copy of the GNU General Public License
|
// You should have received a copy of the GNU General Public License
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
#include <cstdint>
|
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
enum class GameState : std::uint8_t {
|
#include <Magnum/Magnum.h>
|
||||||
|
|
||||||
|
using namespace Magnum;
|
||||||
|
|
||||||
|
enum class GameState : UnsignedByte {
|
||||||
Unknown, NotRunning, Running
|
Unknown, NotRunning, Running
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue