Asgard.Core.System.ObjectMapper.EndSnapshot C# (CSharp) Method

EndSnapshot() public static method

public static EndSnapshot ( ) : NetworkObject>>.List
return NetworkObject>>.List
        public static List<Tuple<Entity, NetworkObject>> EndSnapshot()
        {
            var tmpList = new List<Tuple<Entity, NetworkObject>>(_snapshotCache);
            _snapshotCache.Clear();
            _inSnapshot = false;
            return tmpList;
        }