Lortseam 3 년 전
부모
커밋
7d6e03b8e6

+ 2 - 1
lib/src/main/java/me/lortseam/completeconfig/extension/BaseExtension.java

@@ -4,7 +4,8 @@ import me.lortseam.completeconfig.data.transform.Transformation;
 import org.spongepowered.configurate.serialize.TypeSerializerCollection;
 
 /**
- * The main CompleteConfig extension type. Used for the {@code completeconfig-extension} entrypoint.
+ * The main CompleteConfig extension type for both client and server environment. Used for the
+ * {@code completeconfig-extension} entrypoint.
  */
 public interface BaseExtension extends Extension {
 

+ 3 - 0
lib/src/main/java/me/lortseam/completeconfig/extension/ClientExtension.java

@@ -1,5 +1,8 @@
 package me.lortseam.completeconfig.extension;
 
+/**
+ * The main CompleteConfig extension type for the client environment.
+ */
 public interface ClientExtension extends BaseExtension {
 
 }

+ 3 - 0
lib/src/main/java/me/lortseam/completeconfig/extension/ServerExtension.java

@@ -1,5 +1,8 @@
 package me.lortseam.completeconfig.extension;
 
+/**
+ * The main CompleteConfig extension type for the server environment.
+ */
 public interface ServerExtension extends BaseExtension {
 
 }