GDTKItem.DataExport
Declaration#
public void DataExport(Stream stream)Parameters#
| Name | Description |
|---|---|
| stream | Stream to use |
Description#
Export database data to a stream
Usage#
using NullSave.GDTK.Inventory;using System.IO;using UnityEngine;
public class CodeSample : MonoBehaviour{
public void ExampleMethod(GDTKItem target, Stream stream) { target.DataExport(stream); }
}