mirror of
https://github.com/Wack0/IFPSTools.NET.git
synced 2025-06-18 10:45:36 -04:00
18 lines
420 B
C#
18 lines
420 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace IFPSLib.Types
|
|
{
|
|
/// <summary>
|
|
/// Pseudo-type describing an unknown value.
|
|
/// </summary>
|
|
public class UnknownType : TypeBase
|
|
{
|
|
private UnknownType() { }
|
|
public override PascalTypeCode BaseType => PascalTypeCode.Unknown;
|
|
|
|
public readonly static UnknownType Instance = new UnknownType();
|
|
}
|
|
}
|