mirror of
https://github.com/DCFApixels/DragonECS-Graphs.git
synced 2025-09-18 03:34:35 +08:00
14 lines
404 B
C#
14 lines
404 B
C#
![]() |
namespace DragonECS.DragonECS
|
|||
|
{
|
|||
|
public readonly struct RelationTargets
|
|||
|
{
|
|||
|
public static readonly RelationTargets Empty = new RelationTargets();
|
|||
|
public readonly int entity;
|
|||
|
public readonly int otherEntity;
|
|||
|
public RelationTargets(int entity, int otherEntity)
|
|||
|
{
|
|||
|
this.entity = entity;
|
|||
|
this.otherEntity = otherEntity;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|