screenshots will take unique name

This commit is contained in:
minjaesong
2020-11-25 13:39:17 +09:00
parent 79114fcbd0
commit bed6f74462
4 changed files with 11 additions and 5 deletions

View File

@@ -253,6 +253,10 @@ open class IngameInstance(val batch: SpriteBatch) : Screen {
data class BlockChangeQueueItem(val old: Int, val new: Int, val posX: Int, val posY: Int)
open fun sendNotification(messages: Array<String>) {}
open fun sendNotification(messages: List<String>) {}
open fun sendNotification(singleMessage: String) {}
}
inline fun Lock.lock(body: () -> Unit) {