namespace Minecraft.Server.FourKit; using Minecraft.Server.FourKit.Entity; /// /// Represents the various type of game modes that s may have /// public enum GameMode { /// /// Survival mode is the "normal" gameplay type, with no special features. /// SURVIVAL = 0, /// /// Creative mode may fly, build instantly, become invulnerable and create free items. /// CREATIVE = 1, /// /// Adventure mode cannot break blocks without the correct tools. /// ADVENTURE = 2, }