1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-06-16 12:11:45 +02:00
GiantsTools/Giants.EffectCompiler/FxMacroDefinition.cs

15 lines
304 B
C#
Raw Normal View History

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; }
}
}