namespace BetterUI;
/// <summary>
/// This is a scene event that you can listen to when the theme changes.
/// </summary>
public interface IThemeEvent : ISceneEvent<IThemeEvent>
{
/// <summary>
/// Called whenever the theme changes.
/// </summary>
/// <param name="theme">The new theme.</param>
void OnThemeChanged( Theme theme );
}