mirror of
https://github.com/Dongyifengs/AssetStudio-Genshin-MoYi.git
synced 2025-05-06 19:39:19 +08:00
25 lines
621 B
C#
25 lines
621 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace AssetStudio
|
|||
|
{
|
|||
|
public sealed class BuildSettings : Object
|
|||
|
{
|
|||
|
public string m_Version;
|
|||
|
|
|||
|
public BuildSettings(ObjectReader reader) : base(reader)
|
|||
|
{
|
|||
|
var levels = reader.ReadStringArray();
|
|||
|
|
|||
|
var hasRenderTexture = reader.ReadBoolean();
|
|||
|
var hasPROVersion = reader.ReadBoolean();
|
|||
|
var hasPublishingRights = reader.ReadBoolean();
|
|||
|
var hasShadows = reader.ReadBoolean();
|
|||
|
|
|||
|
m_Version = reader.ReadAlignedString();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|