Esempio n. 1
0
        public static void Add(string level, uint uid, ushort x, ushort z, ushort y, byte newBlock)
        {
            LevelUndo tmp = history[level];

            if (tmp == null)
            {
                return;
            }
            tmp.Add(x, z, y, uid, newBlock);
        }