blob: 5f1ccdeb87886470d08fb04ba46b2509bafc2ba1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
@startuml
!include skinparams.puml
package GameModule {
class GameIO
class GameTree
class GameMove
}
GameIO -> GameTree
GameTree -> GameMove
package EngineModule {
class EngineIO
class EngineLogic
interface DecisionAlgorithm
class DecisionAlgorithm1
class DecisionAlgorithm2
}
EngineIO -> EngineLogic
EngineLogic -> DecisionAlgorithm
DecisionAlgorithm <|.. DecisionAlgorithm1
DecisionAlgorithm <|.. DecisionAlgorithm2
@enduml
|