diff options
Diffstat (limited to 'composeApp/src/commonMain/kotlin/coffee/liz/abstractionengine/Platform.kt')
| -rw-r--r-- | composeApp/src/commonMain/kotlin/coffee/liz/abstractionengine/Platform.kt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/composeApp/src/commonMain/kotlin/coffee/liz/abstractionengine/Platform.kt b/composeApp/src/commonMain/kotlin/coffee/liz/abstractionengine/Platform.kt new file mode 100644 index 0000000..91faf62 --- /dev/null +++ b/composeApp/src/commonMain/kotlin/coffee/liz/abstractionengine/Platform.kt @@ -0,0 +1,7 @@ +package coffee.liz.abstractionengine + +interface Platform { + val name: String +} + +expect fun getPlatform(): Platform
\ No newline at end of file |
