mirror of
https://github.com/Wack0/IFPSTools.NET.git
synced 2025-06-18 10:45:36 -04:00
14 lines
187 B
C#
14 lines
187 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace IFPSLib.Emit
|
|
{
|
|
public enum VariableType
|
|
{
|
|
Global,
|
|
Local,
|
|
Argument
|
|
}
|
|
}
|