Advertisement
irishstorm

weaponinfo

Dec 22nd, 2012
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //  Weapon_Info.js
  2.  
  3. //  Description :
  4. //  This Script will hold all the firearm information, that will be accessed by other Scripts.
  5.  
  6. //  Static Variables
  7. static var weapName : String;
  8. static var weapFireType : String;
  9.  
  10.  
  11.  
  12. //  Public Variables
  13. public var weaponName : String = "";
  14. public var weaponFireType : String = "";
  15.  
  16.  
  17. function Update()
  18. {
  19.     weapName = weaponName;
  20.     weapFireType = weaponFireType;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement