Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 1.81 KB

TextSerializer.Serialize(Stream,IEnumerable_Entity_).md

File metadata and controls

25 lines (15 loc) · 1.81 KB

TextSerializer.Serialize(Stream, IEnumerable) Method

Serializes the given Entity instances with their components into the provided System.IO.Stream.

public void Serialize(System.IO.Stream stream, System.Collections.Generic.IEnumerable<DefaultEcs.Entity> entities);

Parameters

stream System.IO.Stream

The System.IO.Stream in which the data will be saved.

entities System.Collections.Generic.IEnumerable<Entity>

The Entity instances to save.

Implements Serialize(Stream, IEnumerable<Entity>)