FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
XCodeEditor-for-Unity/PBXProject.cs at master · dcariola/XCodeEditor-for-Unity · GitHub
dcariola
/
XCodeEditor-for-Unity
Public
Notifications
You must be signed in to change notification settings
Fork
93
Star
219
Code
Issues
12
Pull requests
2
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
XCodeEditor-for-Unity
/
PBXProject.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
23 lines (19 loc) · 441 Bytes
Breadcrumbs
XCodeEditor-for-Unity
/
PBXProject.cs
Copy path
File metadata and controls
23 lines (19 loc) · 441 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using
UnityEngine
;
using
System
.
Collections
;
using
System
.
Collections
.
Generic
;
namespace
UnityEditor
.
XCodeEditor
{
public
class
PBXProject
:
PBXObject
{
protected
string
MAINGROUP_KEY
=
"mainGroup"
;
public
PBXProject
(
)
:
base
(
)
{
}
public
PBXProject
(
string
guid
,
PBXDictionary
dictionary
)
:
base
(
guid
,
dictionary
)
{
}
public
string
mainGroupID
{
get
{
return
(
string
)
_data
[
MAINGROUP_KEY
]
;
}
}
}
}
Back
|
FazBrowse Home
|
New Git URL