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