interface IWeapon {
    //Call on public Attack method
    public void Attack();

    //Call on the Get Weapon Information method from Inventory Slot script
    public WeaponInfo GetWeaponInfo();
}