init
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using VOID.Generic.Objects.Abstract.Events;
|
||||
using VOID.Generic.Objects.Unit;
|
||||
|
||||
namespace VOID.Generic.Objects.Item.Events
|
||||
{
|
||||
public class DropEvent : AbstractEvent
|
||||
{
|
||||
public bool prevented = false;
|
||||
|
||||
public ItemObject item;
|
||||
public UnitObject unit;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e203310941f54d02b47cef3f9e8c20d4
|
||||
timeCreated: 1670866592
|
||||
@@ -0,0 +1,14 @@
|
||||
using UnityEngine;
|
||||
using VOID.Generic.Objects.Abstract.Events;
|
||||
using VOID.Generic.Objects.Unit;
|
||||
|
||||
namespace VOID.Generic.Objects.Item.Events
|
||||
{
|
||||
public class MoveItemEvent : AbstractEvent
|
||||
{
|
||||
public ItemObject item;
|
||||
public UnitObject unit;
|
||||
public Vector3 fromPosition;
|
||||
public Vector3 toPosition;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a453865967934a0a89b000580d5ac9c4
|
||||
timeCreated: 1694902221
|
||||
@@ -0,0 +1,13 @@
|
||||
using VOID.Generic.Objects.Abstract.Events;
|
||||
using VOID.Generic.Objects.Unit;
|
||||
|
||||
namespace VOID.Generic.Objects.Item.Events
|
||||
{
|
||||
public class PickEvent : AbstractEvent
|
||||
{
|
||||
public bool prevented = false;
|
||||
|
||||
public ItemObject item;
|
||||
public UnitObject unit;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6fb2036978d04f1791b5c913cdca486e
|
||||
timeCreated: 1670862299
|
||||
Reference in New Issue
Block a user