mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-02 22:30:27 +00:00
21 lines
534 B
C#
21 lines
534 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.Assembler {
|
|
public class DataMember {
|
|
public DataMember(string aName, string aDataType, string aDefaultValue) {
|
|
Name = aName;
|
|
DataType = aDataType;
|
|
DefaultValue = aDefaultValue;
|
|
}
|
|
|
|
public readonly string Name;
|
|
public readonly string DataType;
|
|
public readonly string DefaultValue;
|
|
public override string ToString() {
|
|
return Name + " " + DataType + " " + DefaultValue;
|
|
}
|
|
}
|
|
}
|