1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2026-02-20 10:43:12 +01:00
Files
mcMMO/src/main/java/com/gmail/nossr50/config/VersionedConfig.java
2019-03-28 23:43:19 -07:00

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();
}