mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-05-27 22:00:23 -04:00
21 lines
465 B
C#
21 lines
465 B
C#
namespace AssetStudio
|
|
{
|
|
public sealed class BuildSettings : Object
|
|
{
|
|
public string[] levels;
|
|
public string[] scenes;
|
|
|
|
public BuildSettings(ObjectReader reader) : base(reader)
|
|
{
|
|
if (reader.version < (5, 1)) //5.1 down
|
|
{
|
|
levels = reader.ReadStringArray();
|
|
}
|
|
else
|
|
{
|
|
scenes = reader.ReadStringArray();
|
|
}
|
|
}
|
|
}
|
|
}
|