Skip to content

Getting Started

Drew Chase edited this page Jul 11, 2022 · 8 revisions

Getting Started

public ConfigManager Manager;

public void HandleConfig(){

    Manager = new ConfigManager("/Path/To/File.conf"); // Plain Text
    Manager = new ConfigManager("/Path/To/File.conf", true); // With Encryption and Salt is your machine name
    Manager = new ConfigManager("/Path/To/File.conf", true, "Encryption Password"); // With Encryption and Salt is "Encryption Password"

}
Clone this wiki locally