using FLY.Thick.Base.Common;
using FlyADBase;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace FLY.Thick.Base.Server
{
    public class GM_Stop : GM_Base
    {
        public GM_Stop()
        {
            GMState = CTRL_STATE.STOP;
        }
        public override void Start()
        {
            base.Start();
            if (!IsRunning) return;
            mFlyAD.Stop();
        }
    }
}