Table of Contents

Class CMSSaveSystem

Namespace
BlazerTech.CharacterManagement.Core
Assembly
Assembly-CSharp.dll
public static class CMSSaveSystem
Inheritance
CMSSaveSystem

Methods

LoadFileWholePath<T>(string)

public static T LoadFileWholePath<T>(string filePath) where T : class

Parameters

filePath string

Returns

T

Type Parameters

T

LoadFile<T>(string)

public static T LoadFile<T>(string filePath) where T : class

Parameters

filePath string

Returns

T

Type Parameters

T

LoadFilesInFolder<T>(string)

public static List<T> LoadFilesInFolder<T>(string RelativefolderPath) where T : class

Parameters

RelativefolderPath string

Returns

List<T>

Type Parameters

T

SaveFile<T>(string, string, T)

Saves an object to a file in the Persistent Data Path folder.

public static void SaveFile<T>(string RelativefilePath, string fileName, T objectToWrite)

Parameters

RelativefilePath string

Filepath relative to the Persistent Data Path folder.

fileName string

The name the file excluding extention.

objectToWrite T

The object to write into the file.

Type Parameters

T