summaryrefslogtreecommitdiff
path: root/composeApp/src/iosMain/kotlin
diff options
context:
space:
mode:
Diffstat (limited to 'composeApp/src/iosMain/kotlin')
-rw-r--r--composeApp/src/iosMain/kotlin/coffee/liz/abstractionengine/MainViewController.kt2
-rw-r--r--composeApp/src/iosMain/kotlin/coffee/liz/abstractionengine/Platform.ios.kt4
2 files changed, 3 insertions, 3 deletions
diff --git a/composeApp/src/iosMain/kotlin/coffee/liz/abstractionengine/MainViewController.kt b/composeApp/src/iosMain/kotlin/coffee/liz/abstractionengine/MainViewController.kt
index 84b004a..45eb9fa 100644
--- a/composeApp/src/iosMain/kotlin/coffee/liz/abstractionengine/MainViewController.kt
+++ b/composeApp/src/iosMain/kotlin/coffee/liz/abstractionengine/MainViewController.kt
@@ -3,4 +3,4 @@ package coffee.liz.abstractionengine
import androidx.compose.ui.window.ComposeUIViewController
import coffee.liz.abstractionengine.app.App
-fun MainViewController() = ComposeUIViewController { App() } \ No newline at end of file
+fun MainViewController() = ComposeUIViewController { App() }
diff --git a/composeApp/src/iosMain/kotlin/coffee/liz/abstractionengine/Platform.ios.kt b/composeApp/src/iosMain/kotlin/coffee/liz/abstractionengine/Platform.ios.kt
index d52c60f..79de7df 100644
--- a/composeApp/src/iosMain/kotlin/coffee/liz/abstractionengine/Platform.ios.kt
+++ b/composeApp/src/iosMain/kotlin/coffee/liz/abstractionengine/Platform.ios.kt
@@ -1,7 +1,7 @@
package coffee.liz.abstractionengine
-class IOSPlatform: Platform {
+class IOSPlatform : Platform {
override val needsTouchscreenControls = true
}
-actual fun getPlatform(): Platform = IOSPlatform() \ No newline at end of file
+actual fun getPlatform(): Platform = IOSPlatform()