Ejemplo n.º 1
0
        private void RollbackTiles(TSPlayer ply, LogTileArgument args)
        {
            RollbackCommand rc = new RollbackCommand(ply, args);

            CommandQueue.AddCommand(rc, ply);
        }
Ejemplo n.º 2
0
        public void saveQueue(TSPlayer ply)
        {
            SaveCommand sc = new SaveCommand(ply, tileQueue);

            CommandQueue.AddCommand(sc, ply);
        }
Ejemplo n.º 3
0
        private void LookupTiles(TSPlayer ply, LogTileArgument args)
        {
            LookupCommand lc = new LookupCommand(ply, args);

            CommandQueue.AddCommand(lc, ply);
        }