Cosmos/source/Indy.IL2CPU/Assembler/ElementReference.cs
mterwoord_cp 52758be5d0
2008-11-03 10:18:14 +00:00

28 lines
No EOL
554 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Assembler {
public class ElementReference {
public ElementReference(string aName, int aOffset)
: this(aName) {
Offset = aOffset;
}
public ElementReference(string aName) {
Name = aName;
}
public int Offset {
get;
set;
}
public string Name {
get;
set;
}
}
}