pack

fun pack(    items: List<BmpSlice>,     maxSide: Int = 2048,     maxTextures: Int = 1,     borderSize: Int = 2,     fileName: String = "atlas.png"): AtlasPacker.Result<BmpSlice>
@JvmName(name = "packPairs")
fun <T> pack(    items: List<Pair<T, BmpSlice>>,     maxSide: Int = 2048,     maxTextures: Int = 16,     borderSize: Int = 2,     fileName: String = "atlas.png"): AtlasPacker.Result<T>