mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2025-01-09 23:03:27 +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; }
|
||||
|
||||
#if DEBUG
|
||||
public ResourceAnalyzer Analyzer { get; set; }
|
||||
#endif
|
||||
|
||||
public YptFile() : base(null, GameFileType.Ypt)
|
||||
{
|
||||
@ -60,6 +63,10 @@ namespace CodeWalker.GameFiles
|
||||
BuildDrawableDict();
|
||||
BuildParticleDict();
|
||||
|
||||
#if DEBUG
|
||||
Analyzer = new ResourceAnalyzer(rd);
|
||||
#endif
|
||||
|
||||
Loaded = true;
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user