PO/Library/PackageCache/com.unity.collab-proxy@1.9.0/Editor/Collaborate/README.md

32 lines
855 B
Markdown
Raw Normal View History

# 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
```