21 lines
365 B
C#
21 lines
365 B
C#
|
using SupaLidlGame.Characters;
|
||
|
|
||
|
namespace SupaLidlGame.Items.Weapons
|
||
|
{
|
||
|
public partial class Sword : Weapon
|
||
|
{
|
||
|
//[Export]
|
||
|
//public Damagebox
|
||
|
|
||
|
public override void Equip(Character character)
|
||
|
{
|
||
|
base.Equip(character);
|
||
|
}
|
||
|
|
||
|
public override void Use()
|
||
|
{
|
||
|
//base.Use();
|
||
|
}
|
||
|
}
|
||
|
}
|