Inheritance: EnvironmentState
Exemple #1
0
        //
        // PUBLIC METHODS
        //
        public XYEnvironment(int width, int height)
        {
            assert(width > 0);
            assert(height > 0);

            envState = new XYEnvironmentState(width, height);
        }
Exemple #2
0
        //
        // PUBLIC METHODS
        //
        public XYEnvironment(int width, int height)
        {
            assert(width > 0);
            assert(height > 0);

            envState = new XYEnvironmentState(width, height);
        }