Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. namespace FightingArena
  2. {
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6.  
  7. public class Weapon
  8. {
  9. public Weapon(int size, int solidity, int sharpness)
  10. {
  11. this.Size = size;
  12. this.Solidity = solidity;
  13. this.Sharpness = sharpness;
  14. }
  15.  
  16. public int Size { get; set; }
  17. public int Solidity { get; set; }
  18. public int Sharpness { get; set; }
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement