9 lines
142 B
C#
9 lines
142 B
C#
namespace LLib.ImGui;
|
|
|
|
public interface IPersistableWindowConfig
|
|
{
|
|
WindowConfig? WindowConfig { get; }
|
|
|
|
void SaveWindowConfig();
|
|
}
|