View Single Post
  #2  
Old 03-20-2012, 04:55 AM
FG28_Kodiak FG28_Kodiak is offline
Approved Member
 
Join Date: Dec 2009
Location: Swabia->Bavaria->Germany
Posts: 884
Default

if you use the Missionmarkerclass from narvy
Code:
internal class MissionMarker
    {
        internal double x;
        internal double y;
        internal int army;
        internal MissionMarker(double x, double y, int army) { this.x = x; this.y = y; this.army = army; }
    }
then you should use 0 for neutral, 1 for red and 2 for blue. In mis-file a neutral frontmarker has also the value 0
Reply With Quote