VisualStudioCode/PlantUML
提供: 初心者エンジニアの簡易メモ
PlantUMLのプラグイン
- DL(https://marketplace.visualstudio.com/items?itemName=jebbs.plantuml)
- Installボタンを押す
- codeエディタでクラス図を記述
- code上プレビューするoption+d
クラス図
@startuml
class Enemy {
+ string type
~ string name
# void SayHello()
- void Attack()
}
@enduml
参考:https://gist.github.com/yoggy/bd68b3f1f55dbd742bea71424ca66564
