Add downloadPath and renderPath settings

This commit is contained in:
johni0702
2016-08-15 10:09:05 +02:00
parent edf57490a6
commit 108d25c574
5 changed files with 23 additions and 7 deletions

View File

@@ -0,0 +1,8 @@
package com.replaymod.render;
import com.replaymod.core.SettingsRegistry;
public final class Setting<T> {
public static final SettingsRegistry.SettingKey<String> RENDER_PATH =
new SettingsRegistry.SettingKeys<>("advanced", "renderPath", null, "./replay_videos/");
}