Inheritance: EnvironmentState
Exemplo n.º 1
0
        //
        // PUBLIC METHODS
        //
        public XYEnvironment(int width, int height)
        {
            assert(width > 0);
            assert(height > 0);

            envState = new XYEnvironmentState(width, height);
        }
Exemplo n.º 2
0
        //
        // PUBLIC METHODS
        //
        public XYEnvironment(int width, int height)
        {
            assert(width > 0);
            assert(height > 0);

            envState = new XYEnvironmentState(width, height);
        }