Implement in-game sidebars

This commit is contained in:
2022-05-28 16:05:02 +02:00
parent 99197d92bb
commit f8b99d44bf
13 changed files with 292 additions and 50 deletions

View File

@@ -0,0 +1,21 @@
package gg.malloc.defense.engine;
import gg.malloc.defense.model.Progress;
public class StaticProgress implements Progress {
int m_value;
int m_maximum;
public StaticProgress(int value, int maximum) {
m_value = value;
m_maximum = maximum;
}
public int value() {
return m_value;
}
public int maximum() {
return m_maximum;
}
}