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