This commit is contained in:
2026-04-25 23:37:10 +02:00
commit 19d6bd934a
476 changed files with 9198 additions and 0 deletions
@@ -0,0 +1,29 @@
using RPGCore.BackpackEquipment.ObjectModules.UnitEquipment.Objects;
using RPGCore.ObjectModules.ActionObjectModule;
namespace RPGCore.BackpackEquipment.ObjectModules.UnitEquipment.Actions
{
public class EquipAction : BaseAction
{
private readonly WearableObject _wearable;
private readonly int _index;
public EquipAction(WearableObject wearable, int index = -1)
{
_wearable = wearable;
_index = index;
}
public override void CanDoIt()
{
}
protected override void OnDoIt()
{
}
protected override void OnEndIt() { }
protected override void OnCancelIt() { }
}
}
@@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: e7e7ce4fbec54ebfbe05f9cecae4a871
timeCreated: 1774105374
@@ -0,0 +1,27 @@
using RPGCore.ObjectModules.ActionObjectModule;
namespace RPGCore.BackpackEquipment.ObjectModules.UnitEquipment.Actions
{
public class UnEquipAction : BaseAction
{
public override void CanDoIt()
{
throw new System.NotImplementedException();
}
protected override void OnDoIt()
{
throw new System.NotImplementedException();
}
protected override void OnEndIt()
{
throw new System.NotImplementedException();
}
protected override void OnCancelIt()
{
throw new System.NotImplementedException();
}
}
}
@@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: 48179d58af5844cb9ea6d3df49a151cb
timeCreated: 1774105416