14 lines
145 B
C#
14 lines
145 B
C#
|
/*
|
||
|
using Godot;
|
||
|
|
||
|
namespace SupaLidlGame.Items.Weapons;
|
||
|
|
||
|
public partial class Lance : Sword
|
||
|
{
|
||
|
public override void _Ready()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
*/
|