19 lines
372 B
C#
19 lines
372 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Thousandto.Code.Logic
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// FirstTimeToMap Info
|
|||
|
/// </summary>
|
|||
|
public class FirstTimeToMap
|
|||
|
{
|
|||
|
public bool firstTimeToMap = false;
|
|||
|
public int lastMapID = 0;
|
|||
|
public int nextMapID = 0;
|
|||
|
public int playerCurrentLevel = 0;
|
|||
|
}
|
|||
|
}
|