Example #1
0
        public void finishTaxi(Client player)
        {
            JobTaxi t = new JobTaxi();

            t.CMD_finishTaxi(player);
        }
Example #2
0
        public void acceptTaxi(Client player)
        {
            JobTaxi t = new JobTaxi();

            t.CMD_acceptTaxi(player);
        }
Example #3
0
        public void taxiJob(Client player)
        {
            JobTaxi t = new JobTaxi();

            t.makeTaxist(player);
        }
Example #4
0
        public void quitTaxi(Client player)
        {
            JobTaxi t = new JobTaxi();

            t.removeTaxist(player);
        }
Example #5
0
        public void calltaxi(Client player)
        {
            JobTaxi t = new JobTaxi();

            t.CMD_taxi(player);
        }