Rudimentary load screen works (only with Ingame screen)

This commit is contained in:
minjaesong
2017-07-13 19:10:11 +09:00
parent 7742d5b0d4
commit 0288fa58d9
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()
}
}