1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-06-01 14:51:45 +02: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; }
}
}