mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-09 12:41:15 -05:00
16 lines
275 B
C#
16 lines
275 B
C#
|
|
namespace pkNX.Game
|
|
{
|
|
public class TextReference
|
|
{
|
|
public readonly int Index;
|
|
public readonly TextName Name;
|
|
|
|
internal TextReference(int index, TextName name)
|
|
{
|
|
Index = index;
|
|
Name = name;
|
|
}
|
|
}
|
|
}
|