Exemple #1
0
        private void RollbackTiles(TSPlayer ply, LogTileArgument args)
        {
            RollbackCommand rc = new RollbackCommand(ply, args);

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

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

            CommandQueue.AddCommand(lc, ply);
        }