mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-23 12:33:02 +00:00
14 lines
No EOL
365 B
C#
14 lines
No EOL
365 B
C#
using SanAndreasUnity.Importing.Conversion;
|
|
|
|
namespace SanAndreasUnity.Importing.Items.Definitions
|
|
{
|
|
[Section("txdp")]
|
|
public class TextureDictionaryParentDef : Definition
|
|
{
|
|
public TextureDictionaryParentDef(string line)
|
|
: base(line)
|
|
{
|
|
TextureDictionary.AddParent(GetString(0), GetString(1));
|
|
}
|
|
}
|
|
} |