LeviLamina
Loading...
Searching...
No Matches
EducationWorldType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5enum class EducationWorldType : uchar {
6 // bitfield representation
7 Default = 0,
8 HasQuizDeprecated = 1 << 0,
9 SinglePlayerLesson = 1 << 1,
10 MultiplayerLesson = 1 << 2,
11 AnyLesson = SinglePlayerLesson | MultiplayerLesson,
12};