Inheritance: MonoBehaviour
コード例 #1
0
ファイル: Program.cs プロジェクト: DeemoONeill/Elevator_algo
        static void Main(string[] args)
        {
            int[] floors = new int[] { 0, 1, 5, 6, 7, 9 };

            lift mylift = new lift(3, Directions.down, floors);

            mylift.Seek();
        }