10 lines
231 B
C#
10 lines
231 B
C#
using VOID.Generic.Objects.Abstract.Events;
|
|
|
|
namespace VOID.Generic.Objects.Unit.Events
|
|
{
|
|
public class OpenOtherUnitEvent : AbstractEvent
|
|
{
|
|
public UnitObject openedBy;
|
|
public UnitObject otherUnit;
|
|
}
|
|
} |