mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 05:52:11 +00:00
16 lines
349 B
C#
16 lines
349 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.IL2CPU.X86.ELF {
|
|
public abstract class BaseSection : BaseDataStructure {
|
|
public abstract uint MemorySize {
|
|
get;
|
|
}
|
|
|
|
public abstract uint MemoryOffset {
|
|
get;
|
|
}
|
|
}
|
|
}
|