diff --git a/common/api/core/src/main/java/com/dfsek/terra/api/addon/Addon.java b/common/api/core/src/main/java/com/dfsek/terra/api/addon/Addon.java deleted file mode 100644 index 7ecb32588..000000000 --- a/common/api/core/src/main/java/com/dfsek/terra/api/addon/Addon.java +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2020-2021 Polyhedral Development - * - * The Terra API is licensed under the terms of the MIT License. For more details, - * reference the LICENSE file in the common/api directory. - */ - -package com.dfsek.terra.api.addon; - -public interface Addon { -} diff --git a/common/api/core/src/main/java/com/dfsek/terra/api/addon/AddonLoader.java b/common/api/core/src/main/java/com/dfsek/terra/api/addon/AddonLoader.java deleted file mode 100644 index edc010882..000000000 --- a/common/api/core/src/main/java/com/dfsek/terra/api/addon/AddonLoader.java +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Copyright (c) 2020-2021 Polyhedral Development - * - * The Terra API is licensed under the terms of the MIT License. For more details, - * reference the LICENSE file in the common/api directory. - */ - -package com.dfsek.terra.api.addon; - -import com.dfsek.terra.api.Platform; -import com.dfsek.terra.api.registry.CheckedRegistry; - - -public interface AddonLoader { - /** - * Load all addons. - * - * @param platform TerraPlugin instance. - */ - void load(Platform platform, CheckedRegistry addons); -}