Click or drag to resize
Continent Constructor
View Project on GitHub
Initializes a new instance of the Continent class.

Namespace: GW2CSharp.V2.Unauthenticated.Continents
Assembly: GW2CSharp (in GW2CSharp.dll) Version: 0.15.0.0 (0.15)
Syntax
C#
public Continent(
	int id,
	string name,
	List<int> continent_dims,
	int min_zoom,
	int max_zoom,
	IEnumerable<int> floors
)

Parameters

id
Type: SystemInt32
The id of the continent.
name
Type: SystemString
The name of the continent.
continent_dims
Type: System.Collections.GenericListInt32
The width and height dimensions of the continent.
min_zoom
Type: SystemInt32
The minimal zoom level for use with the map tile service.
max_zoom
Type: SystemInt32
The maximum zoom level for use with the map tile service.
floors
Type: System.Collections.GenericIEnumerableInt32
A list of floors available for this continent.
See Also