ListExtensions.ReadStringListChanges
Declaration#
public static List<string> ReadStringListChanges(Stream stream)Parameters#
| Name | Description |
|---|---|
| stream | Stream to read |
Description#
Read a list of string cahnges
Usage#
Example
using NullSave.GDTK;using System.Collections.Generic;using System.IO;using UnityEngine;
public class Example : MonoBehaviour{ public void ExampleMethod(Stream stream) { List<string> changes = ListExtensions.ReadStringListChanges(stream); }}