mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2026-02-21 19:22:59 +01:00
new config pt 10 - All configs are now managed by ConfigManager (WIP)
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package com.gmail.nossr50.config;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
/**
|
||||
* Represents a class that contains a generic collection
|
||||
* @param <T>
|
||||
*/
|
||||
public interface GenericCollectionContainer<T> {
|
||||
/**
|
||||
* Grab the collection held by this class
|
||||
* @return the collection held by this class
|
||||
*/
|
||||
Collection<T> getLoadedCollection();
|
||||
}
|
||||
Reference in New Issue
Block a user