using System; using System.Collections.Generic; using System.Text; namespace Thousandto.Code.Logic { /// /// FirstTimeToMap Info /// public class FirstTimeToMap { public bool firstTimeToMap = false; public int lastMapID = 0; public int nextMapID = 0; public int playerCurrentLevel = 0; } }