15 lines
381 B
Plaintext
15 lines
381 B
Plaintext
@startuml
|
|
class Setup <<static>> {
|
|
+ {static} CreateDefaultFolders() : void
|
|
+ {static} ImportAssets() : void
|
|
}
|
|
class Folders <<static>> {
|
|
+ {static} CreateDefault(root:string, folders:string[]) : void
|
|
}
|
|
class Assets <<static>> {
|
|
+ {static} ImportAsset(asset:string, subfolder:string, folder:string) : void
|
|
}
|
|
Setup +-- Folders
|
|
Setup +-- Assets
|
|
@enduml
|