14 lines
No EOL
222 B
C#
14 lines
No EOL
222 B
C#
using Unity.Entities;
|
|
|
|
namespace Events
|
|
{
|
|
public struct WindowOpenEventData : IEventComponentData
|
|
{
|
|
public Entity Player;
|
|
}
|
|
|
|
public struct WindowCloseEventData : IEventComponentData
|
|
{
|
|
public Entity Player;
|
|
}
|
|
} |