Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
BaseContainerTools.c
Go to the documentation of this file.
1/*
2===========================================
3Do not modify, this script is generated
4===========================================
5*/
6
11
12sealed class BaseContainerTools
13{
14 private void BaseContainerTools();
15 private void ~BaseContainerTools();
16
18 static proto bool WriteToWidget(BaseContainer cont, Widget w, string varName);
20 static proto bool ReadFromWidget(BaseContainer cont, Widget w, string varName);
22 static proto void WriteToInstance(notnull Class inst, BaseContainer src);
24 static proto void ReadFromInstance(notnull Class inst, BaseContainer src);
26 static proto bool ReadPropertyFromInstance(notnull Class inst, string propertyName, out void val);
28 static proto bool WritePropertyToInstance(notnull Class inst, string propertyName, void val);
41 static proto ref Resource LoadContainer(ResourceName resourceName);
62 static proto ref Resource CreateContainer(string typeClass);
88 static proto bool SaveContainer(BaseContainer cont, ResourceName resourceName, string fileName = "");
114 static proto ref Resource CreateContainerFromInstance(notnull Managed instance);
139 static proto ref Managed CreateInstanceFromContainer(BaseContainer src);
140}
141
ResourceName resourceName
Definition SCR_AIGroup.c:66
Super root of all classes in Enforce script.
Definition Types.c:35
Object holding reference to resource. In destructor release the resource.
Definition Resource.c:25