RoadRunner/Assets/Gley/Common/Editor/ISettingsWindowProperties.cs
2024-11-19 11:48:21 +01:00

14 lines
304 B
C#

namespace Gley.Common
{
public interface ISettingsWindowProperties
{
string VersionFilePath { get; }
string WindowName { get;}
int MinWidth { get;}
int MinHeight { get;}
string FolderName { get; }
string ParentFolder { get; }
}
}