From 528e6ca388660f3ed8aa6510a62efdaad1de557d Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Sun, 29 Dec 2024 04:48:09 +0100 Subject: [PATCH] Mark PlatformData as internal & non-extendable --- .../staropensource/engine/base/implementable/PlatformData.kt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/base/src/commonMain/kotlin/de/staropensource/engine/base/implementable/PlatformData.kt b/base/src/commonMain/kotlin/de/staropensource/engine/base/implementable/PlatformData.kt index 833b390..2131b8f 100644 --- a/base/src/commonMain/kotlin/de/staropensource/engine/base/implementable/PlatformData.kt +++ b/base/src/commonMain/kotlin/de/staropensource/engine/base/implementable/PlatformData.kt @@ -19,11 +19,15 @@ package de.staropensource.engine.base.implementable +import org.jetbrains.annotations.ApiStatus + /** * Interface for platform-specific data. * * @since v1-alpha10 */ +@ApiStatus.Internal +@ApiStatus.NonExtendable interface PlatformData { /** * Contains platform-specific data.