Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 1.68 KB

ISerializer.Deserialize(Stream,World).md

File metadata and controls

27 lines (17 loc) · 1.68 KB

ISerializer.Deserialize(Stream, World) Method

Deserializes Entity instances with their components from the given System.IO.Stream into the given World.

System.Collections.Generic.ICollection<DefaultEcs.Entity> Deserialize(System.IO.Stream stream, DefaultEcs.World world);

Parameters

stream System.IO.Stream

The System.IO.Stream from which the data will be loaded.

world World

The World instance on which the Entity will be created.

Returns

System.Collections.Generic.ICollection<Entity>
The Entity instances loaded.