mirror of
https://github.com/DanilaFe/abacus
synced 2026-01-18 12:55:19 +00:00
15 lines
247 B
Java
15 lines
247 B
Java
|
|
package org.nwapw.abacus.config;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Serializable class that will be used to load TOML
|
||
|
|
* configurations.
|
||
|
|
*/
|
||
|
|
public class Configuration {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* The type of number this calculator should use.
|
||
|
|
*/
|
||
|
|
public String numberType;
|
||
|
|
|
||
|
|
}
|