예제 #1
0
 public static void SetNorth(PogoRaidUser user, decimal value)
 {
     user.LatMax = value;
 }
예제 #2
0
 public static void SetWest(PogoRaidUser user, decimal value)
 {
     user.LonMin = value;
 }
예제 #3
0
 public static decimal?GetWest(PogoRaidUser user)
 {
     return(user.LonMin);
 }
예제 #4
0
 public static decimal?GetSouth(PogoRaidUser user)
 {
     return(user.LatMin);
 }
예제 #5
0
 public static void SetSouth(PogoRaidUser user, decimal value)
 {
     user.LatMin = value;
 }
예제 #6
0
 public static decimal?GetEast(PogoRaidUser user)
 {
     return(user.LonMax);
 }
예제 #7
0
 public static void SetEast(PogoRaidUser user, decimal value)
 {
     user.LonMax = value;
 }
예제 #8
0
 public static decimal?GetNorth(PogoRaidUser user)
 {
     return(user.LatMax);
 }