Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ConsoleApplication1
- {
- class main
- {
- static void Main()
- {
- melee[] mweapons = null;
- // Melee weapons :: name, min damage, max damage, price //
- mweapons[0] = melee("Copper sword", 1, 6, 50);
- mweapons[1] = melee("Iron sword", 2, 8, 100);
- mweapons[2] = melee("Steel sword", 4, 10, 200);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement