Replace parser with Kotlin version
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / text / Part.kt
1 package net.pterodactylus.sone.text
2
3 /**
4  * A part is a single piece of information that can be displayed as a single
5  * element. How the part is displayed is not part of the [Part] specification.
6  */
7 interface Part {
8
9         val text: String
10
11 }