Ejemplo n.º 1
0
        public static Decoy DecoyRandom(RealmManager manager, Player player, int duration, float tps)
        {
            Decoy d = new Decoy(manager, player, duration, tps);

            d.direction = d.GetRandDirection();
            return(d);
        }
Ejemplo n.º 2
0
        public static Decoy DecoyRandom(Player player, int duration, float tps)
        {
            var d = new Decoy(player, duration, tps);

            d.direction = d.GetRandDirection();
            return(d);
        }
Ejemplo n.º 3
0
 public static Decoy DecoyRandom(Player player, int duration, float tps)
 {
     var d = new Decoy(player, duration, tps);
     d.direction = d.GetRandDirection();
     return d;
 }
Ejemplo n.º 4
0
 public static Decoy DecoyRandom(RealmManager manager, Player player, int duration, float tps)
 {
     Decoy d = new Decoy(manager, player, duration, tps);
     d.direction = d.GetRandDirection();
     return d;
 }