using System; using System.Collections.Generic; using System.Text; namespace StarJackWorldEditor.Engine { class TutorialObject : GameObject { private int mEventNum; public int EventNumber { get { return mEventNum; } set { mEventNum = value; } } } }