mirror of
https://github.com/Wack0/IFPSTools.NET.git
synced 2025-06-18 10:45:36 -04:00
18 lines
395 B
C#
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();
|
|
}
|
|
}
|