Skip to content

Instantly share code, notes, and snippets.

@paweltarbaj
paweltarbaj / Ansi.kt
Last active November 24, 2022 21:47 — forked from delphyne/Ansi.kt
Hacky path finder for Gold and Goblins
package util
/**
* adapted from https://gist.github.com/dainkaplan/4651352
*/
class Ansi(private vararg val codes: String) {
fun and(other: Ansi): Ansi {
return Ansi(*codes, *other.codes)
}