Rudimentary load screen works (only with Ingame screen)

This commit is contained in:
minjaesong
2017-07-13 19:10:11 +09:00
parent d9a3318768
commit a53f818ba6
6 changed files with 181 additions and 116 deletions

View File

@@ -59,4 +59,8 @@ class HistoryArray<T>(val size: Int) {
val oldest: T?
get() = this[history.size - 1]
fun clear() {
history.clear()
}
}