Version 1.0 #40

Merged
j23f0779 merged 947 commits from development2 into main 2024-12-13 10:26:49 +01:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit e96cd40302 - Show all commits

View File

@@ -5,8 +5,8 @@
public class Animation { public class Animation {
private MdgaApp app; private MdgaApp app;
Animation(MdgaApp app_) { Animation(MdgaApp app) {
app = app_; this.app = app;
} }
void play() { void play() {

View File

@@ -5,8 +5,8 @@
public class AnimationHandler { public class AnimationHandler {
private MdgaApp app; private MdgaApp app;
public AnimationHandler(MdgaApp app_) { public AnimationHandler(MdgaApp app) {
app = app_; this.app = app;
} }
public void playAnimation() { public void playAnimation() {