mirror of
https://github.com/R-YaTian/TinkeDSi.git
synced 2025-06-18 08:35:35 -04:00

* Add support to change the map char info (PMAC section) in NFTR font files * Fixed problem with some fonts * Improved NINOKUNI plugin to pack .N2D files * Added support for SUBARASHIKI game (The world end with you) -> Unpack [pack] files * Added option to search files by offset -> Offset: 00000000 * Improved hexadecimal editor
43 lines
794 B
C#
43 lines
794 B
C#
using System;
|
|
|
|
namespace Be.Windows.Forms
|
|
{
|
|
internal abstract class DataBlock
|
|
{
|
|
internal DataMap _map;
|
|
internal DataBlock _nextBlock;
|
|
internal DataBlock _previousBlock;
|
|
|
|
public abstract long Length
|
|
{
|
|
get;
|
|
}
|
|
|
|
public DataMap Map
|
|
{
|
|
get
|
|
{
|
|
return _map;
|
|
}
|
|
}
|
|
|
|
public DataBlock NextBlock
|
|
{
|
|
get
|
|
{
|
|
return _nextBlock;
|
|
}
|
|
}
|
|
|
|
public DataBlock PreviousBlock
|
|
{
|
|
get
|
|
{
|
|
return _previousBlock;
|
|
}
|
|
}
|
|
|
|
public abstract void RemoveBytes(long position, long count);
|
|
}
|
|
}
|