mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-01 05:15:36 +01:00
15 lines
304 B
C#
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; }
|
|||
|
}
|
|||
|
}
|