22 lines
493 B
C#
22 lines
493 B
C#
namespace HSchool.Simulation;
|
|
|
|
/// <summary>
|
|
/// Why a school could not be created. Lives here rather than in the server because the checks
|
|
/// that produce it — the name rules, the clock range — belong to the simulation.
|
|
/// </summary>
|
|
public enum SchoolCreationError
|
|
{
|
|
None = 0,
|
|
LimitReached,
|
|
ServerFull,
|
|
InvalidName,
|
|
InvalidStartDate,
|
|
InvalidMap,
|
|
UnknownMod,
|
|
InvalidCatalog,
|
|
UnknownCountry,
|
|
UnknownNativeLanguage,
|
|
MissingMod,
|
|
ModCycle,
|
|
}
|