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
22 lines
492 B
C#
22 lines
492 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Be.Windows.Forms
|
|
{
|
|
/// <summary>
|
|
/// Specifies the case of hex characters in the HexBox control
|
|
/// </summary>
|
|
public enum HexCasing
|
|
{
|
|
/// <summary>
|
|
/// Converts all characters to uppercase.
|
|
/// </summary>
|
|
Upper = 0,
|
|
/// <summary>
|
|
/// Converts all characters to lowercase.
|
|
/// </summary>
|
|
Lower = 1
|
|
}
|
|
}
|