8 lines
94 B
C#
Raw Permalink Normal View History

2023-10-29 00:46:17 +08:00
namespace AssetStudio
{
public interface IYAMLExportable
{
YAMLNode ExportYAML();
}
}