blob: 6adc849da1b989fbfa39843371c0ff45ae845271 (
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
28
29
30
31
|
@startuml
!include skinparams.puml
package GameModule {
class GameIO
class GameState
class GameTree
class GameMove
}
GameIO -> GameState
GameState -> GameTree
GameTree -> GameMove
package EngineModule {
class EngineIO
class EngineLogic
interface DecisionAlgorithm
class DecisionAlgorithm2
class DecisionAlgorithm1
}
EngineIO --> EngineLogic
EngineLogic -> DecisionAlgorithm
DecisionAlgorithm <|.. DecisionAlgorithm1
DecisionAlgorithm <|.. DecisionAlgorithm2
EngineLogic --> GameTree
@enduml
|