Exemplo n.º 1
0
 public Marker(MarkerType markerType, Insekt insect)
 {
     this.markerType        = markerType;
     this.markerInformation = MarkerInformationType.Insekt;
     this.Insekt            = insect;
 }
Exemplo n.º 2
0
 public Marker(MarkerType markerType, int richtung)
 {
     this.markerType        = markerType;
     this.markerInformation = MarkerInformationType.Richtung;
     this.richtung          = richtung;
 }
Exemplo n.º 3
0
 public Marker(MarkerType markerType, Spielobjekt objekt)
 {
     this.markerType        = markerType;
     this.markerInformation = MarkerInformationType.Object;
     this.Objekt            = objekt;
 }
Exemplo n.º 4
0
 public Marker(MarkerType markerType, CoreCoordinate ort)
 {
     this.markerInformation = MarkerInformationType.Ort;
     this.ort        = ort;
     this.markerType = markerType;
 }