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/GMExtensionConstant.cs

27 lines
321 B
C#

using System.IO;
namespace GMAssetCompiler
{
public class GMExtensionConstant
{
public string Name
{
get;
private set;
}
public string Value
{
get;
private set;
}
public GMExtensionConstant(Stream _s)
{
_s.ReadInteger();
Name = _s.ReadString();
Value = _s.ReadString();
}
}
}