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
29 lines
650 B
C#
29 lines
650 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Be.Windows.Forms
|
|
{
|
|
/// <summary>
|
|
/// Represents a position in the HexBox control
|
|
/// </summary>
|
|
struct BytePositionInfo
|
|
{
|
|
public BytePositionInfo(long index, int characterPosition)
|
|
{
|
|
_index = index;
|
|
_characterPosition = characterPosition;
|
|
}
|
|
|
|
public int CharacterPosition
|
|
{
|
|
get { return _characterPosition; }
|
|
} int _characterPosition;
|
|
|
|
public long Index
|
|
{
|
|
get { return _index; }
|
|
} long _index;
|
|
}
|
|
}
|