1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00

27 lines
580 B
C#
Raw Permalink Normal View History

using System;
using System.Collections;
using System.Text;
// This is just a holder for parts of a type signature that we need to pass
// from production to production
namespace RusticiSoftware.Translator
{
public class SigEnv
{
public SigEnv()
{ }
public ArrayList Properties = new ArrayList();
public ArrayList Methods = new ArrayList();
public ArrayList Constructors = new ArrayList();
public ArrayList Fields = new ArrayList();
public ArrayList Casts = new ArrayList();
}
}