Savesys

A simple, expandable, variable-based save system.

Forked from the save system used in my other project, The Plains.

Purpose

Savesys uses an external text file for managing variables. It's called by a couple commands that create files that you can later reference.

Functions

Example Usage

``` extern crate savesys; use savesys::*;

if exists("data.txt") == false { generate("data.txt", 20) };

writer("data.txt", 5, 7);

let save_vec: Vec = savesys::reader("data.txt"); ```