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