Changed DrawableModels into arrays and added DrawableModelsBlock

This commit is contained in:
dexy
2020-03-14 22:23:40 +11:00
Unverified
parent e48503e130
commit 1f516a87b3
11 changed files with 422 additions and 207 deletions
@@ -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);
}
}
}