Advertisement
LJLim

Untitled

Dec 18th, 2016
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.43 KB | None | 0 0
  1. private static final class JammedMissileInfo
  2.     {
  3.         float duration;
  4.         MissileAPI missile;
  5.         //float flightTime;
  6.         CombatEntityAPI target;
  7.         //boolean turnLeft = Math.random() < 0.5f;
  8.  
  9.         JammedMissileInfo(MissileAPI missile, CombatEntityAPI target)
  10.         {
  11.             this.missile = missile;
  12.             this.target = target;
  13.             //this.flightTime = missile.getFlightTime();
  14.             this.duration = JAM_DURATION;
  15.         }
  16.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement