Ejemplo n.º 1
0
    public void GetFrame(int index)
    {
        JSONObject json = history[index];

        for (int x = 0; x < json["frame"].Count; x++)
        {
            IObserver ob = registry[json["frame"][x]["id"].AsInt];
            ob.ApplySnapShot(json["frame"][x] as JSONObject);
        }
    }