aboutsummaryrefslogtreecommitdiff
path: root/src/docs
diff options
context:
space:
mode:
Diffstat (limited to 'src/docs')
-rw-r--r--src/docs/class.puml11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/docs/class.puml b/src/docs/class.puml
index 0997356..21add0d 100644
--- a/src/docs/class.puml
+++ b/src/docs/class.puml
@@ -20,7 +20,7 @@ package viewer {
20 Stage 20 Stage
21 void main(String[]) 21 void main(String[])
22 void eventLoop(ApplicationContext) 22 void eventLoop(ApplicationContext)
23 void renderFrame(Graphics2D) 23 void renderFrame(Graphics2D,ApplicationContext)
24 } 24 }
25} 25}
26 26
@@ -35,8 +35,8 @@ package context {
35 class GraphicsContext { 35 class GraphicsContext {
36 final Graphics2D 36 final Graphics2D
37 final ScreenInfo 37 final ScreenInfo
38 paintCircle(Color, Vec2, int) 38 paintCircle(Color, Vec2, float)
39 paintSquare(Color, Vec2, int) 39 paintSquare(Color, Vec2, float, float)
40 } 40 }
41 41
42 class InputHandler { 42 class InputHandler {
@@ -46,8 +46,9 @@ package context {
46 } 46 }
47 47
48 class ScreenManager { 48 class ScreenManager {
49 private ApplicationContext 49 private final ApplicationContext
50 ScreenManager(ApplicationContext) 50 private final Graphics2D
51 ScreenManager(ApplicationContext,Graphics2D)
51 GraphicsContext clearScreen() 52 GraphicsContext clearScreen()
52 } 53 }
53 54