Always create Shells with IDs.
[Sone.git] / src / main / java / net / pterodactylus / sone / data / ShellCreator.java
index 3c5a89a..6835b00 100644 (file)
@@ -29,8 +29,10 @@ public interface ShellCreator<T> {
        /**
         * Creates a new shell.
         *
+        * @param id
+        *            The ID of the shell object
         * @return The new shell
         */
-       public Shell<T> createShell();
+       public Shell<T> createShell(String id);
 
 }