Files
valheim/Assets/Editor/XUPorter/XCConfigurationList.cs
2025-07-04 14:16:14 +08:00

17 lines
413 B
C#

using UnityEngine;
using System.Collections;
using System.Collections.Generic;
namespace UnityEditor.XCodeEditor
{
public class XCConfigurationList : PBXObject
{
// XCBuildConfigurationList buildConfigurations;
// bool defaultConfigurationIsVisible = false;
// string defaultConfigurationName;
public XCConfigurationList( string guid, PBXDictionary dictionary ) : base( guid, dictionary ) {
}
}
}