mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-03-14 13:59:43 +01:00
13 lines
223 B
Java
13 lines
223 B
Java
package com.gmail.nossr50.config;
|
|
|
|
/**
|
|
* Represents a config that is version checked
|
|
*/
|
|
public interface VersionedConfig {
|
|
/**
|
|
* The version of this config
|
|
* @return
|
|
*/
|
|
double getConfigVersion();
|
|
}
|