Advertisement
Guest User

main.cs

a guest
Jun 24th, 2012
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApplication1
  4. {
  5. class main
  6. {
  7. static void Main()
  8. {
  9. melee[] mweapons = null;
  10.  
  11. // Melee weapons :: name, min damage, max damage, price //
  12. mweapons[0] = melee("Copper sword", 1, 6, 50);
  13. mweapons[1] = melee("Iron sword", 2, 8, 100);
  14. mweapons[2] = melee("Steel sword", 4, 10, 200);
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement