init
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
using RPGCore.BackpackEquipment.Objects;
|
||||
using RPGCore.Core.Objects;
|
||||
using RPGCore.ObjectModules.EventObjectModule;
|
||||
|
||||
namespace RPGCore.BackpackEquipment.ObjectModules.UnitBackpack.Events
|
||||
{
|
||||
public class BackpackAddEvent : BaseEvent<UnitObject>
|
||||
{
|
||||
public UnitObject unit;
|
||||
public ItemObject item;
|
||||
public int index;
|
||||
}
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c6f6cc77ea14440495a47ca94593c621
|
||||
timeCreated: 1774105312
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
using RPGCore.BackpackEquipment.Objects;
|
||||
using RPGCore.Core.Objects;
|
||||
using RPGCore.ObjectModules.EventObjectModule;
|
||||
|
||||
namespace RPGCore.BackpackEquipment.ObjectModules.UnitBackpack.Events
|
||||
{
|
||||
public class BackpackRemoveEvent : BaseEvent<UnitObject>
|
||||
{
|
||||
public UnitObject unit;
|
||||
public ItemObject item;
|
||||
public int index;
|
||||
}
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 71449b2a17364a648815c450a72a7b8a
|
||||
timeCreated: 1774105327
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
using RPGCore.Core.Objects;
|
||||
using RPGCore.ObjectModules.EventObjectModule;
|
||||
|
||||
namespace RPGCore.BackpackEquipment.ObjectModules.UnitBackpack.Events
|
||||
{
|
||||
public class BackpackResizeEvent : BaseEvent<UnitObject>
|
||||
{
|
||||
public UnitObject unit;
|
||||
public int beforeSlotCount;
|
||||
public int afterSlotCount;
|
||||
}
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 78e21ee03af24c16b2227c490a8baf32
|
||||
timeCreated: 1774205953
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
using RPGCore.Core.Objects;
|
||||
using RPGCore.ObjectModules.EventObjectModule;
|
||||
|
||||
namespace RPGCore.BackpackEquipment.ObjectModules.UnitBackpack.Events
|
||||
{
|
||||
public class BackpackSortEvent : BaseEvent<UnitObject>
|
||||
{
|
||||
public UnitObject unit;
|
||||
}
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a837a368926d42888b1a661e56cab0df
|
||||
timeCreated: 1774129920
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
using RPGCore.BackpackEquipment.Objects;
|
||||
using RPGCore.Core.Objects;
|
||||
using RPGCore.ObjectModules.EventObjectModule;
|
||||
|
||||
namespace RPGCore.BackpackEquipment.ObjectModules.UnitBackpack.Events
|
||||
{
|
||||
public class BackpackSwapEvent : BaseEvent<UnitObject>
|
||||
{
|
||||
public UnitObject unit;
|
||||
|
||||
public int firstSlotIndex;
|
||||
public ItemObject firstItem;
|
||||
|
||||
public int secondSlotIndex;
|
||||
public ItemObject secondItem;
|
||||
}
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4343d10da640435abbc163a2d255ddf2
|
||||
timeCreated: 1774206592
|
||||
Reference in New Issue
Block a user