C# Class Robocode.Control.BattlefieldSpecification

Afficher le fichier Open project: f13mash/roboyuddh Class Usage Examples

Méthodes publiques

Méthode Description
BattlefieldSpecification ( ) : System

Creates a standard 800 x 600 battlefield.

BattlefieldSpecification ( int width, int height ) : System

Creates a battlefield of the specified width and height.

Method Details

BattlefieldSpecification() public méthode

Creates a standard 800 x 600 battlefield.
public BattlefieldSpecification ( ) : System
Résultat System

BattlefieldSpecification() public méthode

Creates a battlefield of the specified width and height.
Thrown when the width or height is < 400 or > 5000. ///
public BattlefieldSpecification ( int width, int height ) : System
width int The width of the battlefield, where 400 >= width <= 5000.
height int The height of the battlefield, where 400 >= height <= 5000.
Résultat System