GMSAudioConverter/src/GMProject.cs

21 lines
452 B
C#
Raw Normal View History

2021-10-25 20:24:14 +00:00
namespace GMSAudioConverter
{
public struct GMProjectResourceValue
{
public string Name { get; set; }
public string Path { get; set; }
}
public struct GMProjectResource
{
public GMProjectResourceValue ID { get; set; }
public uint Order { get; set; }
}
public struct GMProject
{
public GMProjectResource[] Resources { get; set; }
public string Name { get; set; }
}
}