2022-06-27 13:02:31 +08:00

16 lines
343 B
C#

using System;
namespace LemonUI.Scaleform
{
/// <summary>
/// Scaleforms are 2D Adobe Flash-like objects.
/// </summary>
public interface IScaleform : IDrawable, IProcessable, IDisposable
{
/// <summary>
/// Draws the Scaleform in full screen.
/// </summary>
void DrawFullScreen();
}
}