This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
chovy-gm/GMAssetCompiler/YYSound.cs

25 lines
299 B
C#

namespace GMAssetCompiler
{
internal struct YYSound
{
[YYStringOffset]
public int name;
public int kind;
[YYStringOffset]
public int extension;
[YYStringOffset]
public int origName;
public int effects;
public double volume;
public double pan;
public int preload;
}
}