]> git.lizzy.rs Git - BoundingBoxOutlineReloaded.git/blob - src/main/java/com/irtimaled/bbor/config/Setting.java
e1dabf3ccf400bf716073793e9e990c3ad78d71f
[BoundingBoxOutlineReloaded.git] / src / main / java / com / irtimaled / bbor / config / Setting.java
1 package com.irtimaled.bbor.config;
2
3 public class Setting<T> extends AbstractSetting {
4     private T value;
5
6     Setting(char type, T value) {
7         super(type);
8         this.value = value;
9     }
10
11     public T get() {
12         return value;
13     }
14
15     public void set(T value) {
16         this.value = value;
17     }
18
19     @Override
20     Object getValue() {
21         return value;
22     }
23 }