Beispiel #1
0
        static void Main(string[] args)
        {
            Ressources R = Ressources.Instance;

            // the number of factories
            // Graph graph = new Graph(factoryCount);

            // Game Initialization
            // -------------------

            R.initGame();
            // Game Loop
            // ---------
            while (true)
            {
                // Start Turn
                // ----------
                {
                }

                // Write an action using Console.WriteLine()
                // To debug: Console.Error.WriteLine("Debug messages...");

                // Any valid action, such as "WAIT" or "MOVE source destination cyborgs"
                Console.WriteLine("WAIT");


                // End of the turn
                // ---------------
                graph.clean();
            }
        }