Guest User

Weapon

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