InventoryPluginWrapper.DataLoad
Declaration#
public void DataLoad(Stream stream)Parameters#
| Name | Description |
|---|---|
| stream | Stream to use |
Description#
Saves data to a stream
Usage#
using NullSave.GDTK.Inventory;using System.IO;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(InventoryPluginWrapper target, FileStream other) { target.DataLoad(other); }
}