32 lines
855 B
Markdown
32 lines
855 B
Markdown
# Unity Collaborate Editor Package Code
|
|
In this directory, we have all of the package code of Collaborate including its **MVP** architecture.
|
|
|
|
## Overview
|
|
This is the structure of the directory:
|
|
```none
|
|
<root>
|
|
├── Unity.SourceControl.asmdef
|
|
├── Assets/
|
|
│ ├── Icons/
|
|
│ ├── Layouts/
|
|
│ ├── Styles/
|
|
│ └── UiConstants.cs
|
|
├── Models/
|
|
│ ├── Api/
|
|
│ │ └── ISourceControlProvider.cs
|
|
│ └── Providers/
|
|
│ └── Collab.cs
|
|
├── Views/
|
|
│ └── Adaptors/
|
|
├── Presenters/
|
|
├── Common/
|
|
├── Settings/
|
|
├── Components/
|
|
├── Utilities/
|
|
└── UserInterface/
|
|
├── Bootstrap.cs
|
|
├── WindowCache.cs
|
|
├── ToolbarButton.cs
|
|
└── CollaborateWindow.cs
|
|
```
|