GMSAudioConverter/src/GMProject.cs

21 lines
452 B
C#

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; }
}
}