mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-09 04:31:08 -05:00
23 lines
458 B
C#
23 lines
458 B
C#
|
|
namespace pkNX.Game
|
|
{
|
|
public class TextReference
|
|
{
|
|
public readonly int Index;
|
|
public readonly TextName Name;
|
|
public readonly string FileName;
|
|
|
|
internal TextReference(int index, TextName name)
|
|
{
|
|
Index = index;
|
|
Name = name;
|
|
}
|
|
|
|
internal TextReference(string fileName, TextName name)
|
|
{
|
|
FileName = fileName;
|
|
Name = name;
|
|
}
|
|
}
|
|
}
|