mirror of
https://github.com/Raymonf/whack.git
synced 2025-02-26 14:11:44 +01:00
38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
namespace UAssetAPI.Kismet.Bytecode.Expressions
|
|
{
|
|
/// <summary>
|
|
/// A single Kismet bytecode instruction, corresponding to the <see cref="EExprToken.EX_EndStructConst"/> instruction.
|
|
/// </summary>
|
|
public class EX_EndStructConst : KismetExpression
|
|
{
|
|
/// <summary>
|
|
/// The token of this expression.
|
|
/// </summary>
|
|
public override EExprToken Token { get { return EExprToken.EX_EndStructConst; } }
|
|
|
|
public EX_EndStructConst()
|
|
{
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reads out the expression from a BinaryReader.
|
|
/// </summary>
|
|
/// <param name="reader">The BinaryReader to read from.</param>
|
|
public override void Read(AssetBinaryReader reader)
|
|
{
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// Writes the expression to a BinaryWriter.
|
|
/// </summary>
|
|
/// <param name="writer">The BinaryWriter to write from.</param>
|
|
/// <returns>The iCode offset of the data that was written.</returns>
|
|
public override int Write(AssetBinaryWriter writer)
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
}
|