mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2026-05-14 13:05:21 +08:00
Changed DrawableModels into arrays and added DrawableModelsBlock
This commit is contained in:
@@ -572,6 +572,16 @@ namespace CodeWalker.GameFiles
|
||||
if (pad > 0) Write(new byte[pad]);
|
||||
}
|
||||
|
||||
public void WriteUlongs(ulong[] val)
|
||||
{
|
||||
if (val == null) return;
|
||||
foreach (var v in val)
|
||||
{
|
||||
Write(v);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user