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::*;

savesys::exists("data.txt", 20); savesys::writer("data.txt", 5, 7);

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