XCConfigurationList.cs 413 B

12345678910111213141516
  1. using UnityEngine;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. namespace UnityEditor.XCodeEditor
  5. {
  6. public class XCConfigurationList : PBXObject
  7. {
  8. // XCBuildConfigurationList buildConfigurations;
  9. // bool defaultConfigurationIsVisible = false;
  10. // string defaultConfigurationName;
  11. public XCConfigurationList( string guid, PBXDictionary dictionary ) : base( guid, dictionary ) {
  12. }
  13. }
  14. }