mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2025-01-10 15:19:39 +08:00
Added ResourceAnalyzer to YptFile
This commit is contained in:
parent
1f75bd8e06
commit
140510c67c
@ -21,6 +21,9 @@ namespace CodeWalker.GameFiles
|
|||||||
|
|
||||||
public string ErrorMessage { get; set; }
|
public string ErrorMessage { get; set; }
|
||||||
|
|
||||||
|
#if DEBUG
|
||||||
|
public ResourceAnalyzer Analyzer { get; set; }
|
||||||
|
#endif
|
||||||
|
|
||||||
public YptFile() : base(null, GameFileType.Ypt)
|
public YptFile() : base(null, GameFileType.Ypt)
|
||||||
{
|
{
|
||||||
@ -60,6 +63,10 @@ namespace CodeWalker.GameFiles
|
|||||||
BuildDrawableDict();
|
BuildDrawableDict();
|
||||||
BuildParticleDict();
|
BuildParticleDict();
|
||||||
|
|
||||||
|
#if DEBUG
|
||||||
|
Analyzer = new ResourceAnalyzer(rd);
|
||||||
|
#endif
|
||||||
|
|
||||||
Loaded = true;
|
Loaded = true;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user