mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-02 06:10:13 +00:00
18 lines
327 B
C#
18 lines
327 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.VS.Windows {
|
|
public class AsmLine {
|
|
protected string mText;
|
|
public override string ToString() {
|
|
return mText;
|
|
}
|
|
|
|
public AsmLine(string aText) {
|
|
mText = aText;
|
|
}
|
|
}
|
|
|
|
}
|