From 5e0668003ea32ceef95c37c2538b74df135184ad Mon Sep 17 00:00:00 2001 From: Nikolai Fesenko Date: Sun, 27 Jul 2025 13:14:31 +0000 Subject: [PATCH] uml edit 27.07 15.16 --- uml/main.wsd | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/uml/main.wsd b/uml/main.wsd index 359690b..4ed71f7 100644 --- a/uml/main.wsd +++ b/uml/main.wsd @@ -1,7 +1,19 @@ @startuml package Game { class Game { - + levels[] + + name: String + + levels[]: Level + + currentLevel: Level + + + changeLevel(Level lvl) + } + class Level { + + name: String + + gameObjects[]: gameObject + + load() + + start() + + draw() + + update() } } package Frontend {