From 8cf389aaf748c77aecda0b3a3773c45053b0f231 Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Fri, 25 Oct 2024 13:02:38 +0200 Subject: implement all ALGA features --- People.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'People.cpp') diff --git a/People.cpp b/People.cpp index ff393eb..39d44db 100644 --- a/People.cpp +++ b/People.cpp @@ -44,9 +44,9 @@ string People::to_string() { return out; } -void People::update() { +void People::update(bool tick) { for (Artist * artist : this->artists) { - artist->update(); + artist->update(tick); } } -- cgit v1.2.3