IFPSTools.NET/IFPSLib/Types/TypeType.cs
2022-08-07 15:42:41 +01:00

18 lines
395 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace IFPSLib.Types
{
/// <summary>
/// Pseudo-type describing a type.
/// </summary>
public class TypeType : TypeBase
{
private TypeType() { }
public override PascalTypeCode BaseType => PascalTypeCode.Type;
public readonly static TypeType Instance = new TypeType();
}
}