mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-10-31 21:05:38 +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; }
|
|
}
|
|
}
|