8 lines
223 B
C#
8 lines
223 B
C#
using BriarQueen.Framework.Events.System;
|
|
using BriarQueen.Framework.Managers.UI.Base;
|
|
|
|
namespace BriarQueen.Framework.Events.UI
|
|
{
|
|
public record UIWindowStateChangedEvent(WindowType WindowType, bool IsOpen) : IEvent;
|
|
}
|