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

24 lines
269 B
C#

namespace GMAssetCompiler
{
public class IFFPatchEntry
{
public long Site
{
get;
private set;
}
public object Target
{
get;
private set;
}
public IFFPatchEntry(long _site, object _target)
{
Site = _site;
Target = _target;
}
}
}