1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-10-31 21:05:38 +01:00
GiantsTools/Giants.EffectCompiler/FxMacroDefinition.cs
2020-09-05 22:22:23 -07:00

15 lines
304 B
C#

namespace Giants.EffectCompiler
{
using System.Collections.Generic;
using Giants.BinTools.Macro;
public class FxMacroDefinition
{
public int Opcode { get; set; }
public string Name { get; set; }
public IEnumerable<MacroLine> FxDefGroup { get; set; }
}
}