ru.pocketbyte.locolaser.kotlinmpp.KotlinBaseCustomFormattingResourceConfigBuilder.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resource-kotlin-mpp Show documentation
Show all versions of resource-kotlin-mpp Show documentation
Implementation of platform for LocoLaser tool to work with Kotlin MPP projects.
The newest version!
package ru.pocketbyte.locolaser.kotlinmpp
import ru.pocketbyte.locolaser.resource.formatting.FormattingType
import ru.pocketbyte.locolaser.resource.formatting.NoFormattingType
abstract class KotlinBaseCustomFormattingResourceConfigBuilder
: KotlinBaseResourcesConfigBuilder(){
/**
* Values formatting type.
* Depending on formatting arguments substitution type will be generated various implementations.
* @see FormattingType.ArgumentsSubstitution
*/
var formattingType: FormattingType = NoFormattingType
}