Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
ScriptedSaveContainer.c
Go to the documentation of this file.
1/*
2===========================================
3Do not modify, this script is generated
4===========================================
5*/
6
11
14{
16 event protected void Reset();
18 event protected string GetDataExtension() {return ".txt";};
20 event protected string SaveToString() {return "";};
34 event protected bool StartObject() {return false;};
35 event protected bool EndObject() {return false;};
41 event protected bool StartArray(int count) {return false;};
42 event protected bool EndArray() {return false;};
48 event protected bool StartMap(int count) {return false;};
49 event protected bool EndMap() {return false;};
51 event protected bool WriteKey(string key) {return false;};
53 event protected bool WriteNull() {return false;};
54 event protected bool WriteBool(bool value) {return false;};
55 event protected bool WriteString(string value) {return false;};
56 event protected bool WriteInt(int value) {return false;};
57 event protected bool WriteFloat(float value) {return false;};
58 event protected bool WriteVector(vector value) {return false;};
59}
60
Scripted save container for custom handling of storage.
bool WriteNull()
Typed value writers.
string SaveToString()
Export the data as string to be written to disk etc.
bool WriteKey(string key)
Key writer for named properties in objects or map keys.
string GetDataExtension()
Data extension of the serialized format (e.g. txt, csv, yml) if stored in a filesystem.
bool WriteString(string value)
bool WriteVector(vector value)
void Reset()
Reset the container to re-use for new data.