GameBase.Core.TimeOut.SetInterval C# (CSharp) Method

SetInterval() public method

public SetInterval ( float fMS ) : void
fMS float
return void
        public void SetInterval(float fMS)
        {
            mnInterval = (int)fMS;
        }

Same methods

TimeOut::SetInterval ( int nSec ) : void

Usage Example

Ejemplo n.º 1
0
        private GameBase.Core.TimeOut mSendTime; //发送定时器

        #endregion Fields

        #region Constructors

        public WorldPigeon()
        {
            mListPeginInfo = new List<PigeonInfo>();
            mSendTime = new GameBase.Core.TimeOut();
            mSendTime.SetInterval(GameBase.Config.Define.WORDPIGEONSENDITME);
            mSendTime.Update();
               mFuckTick = System.Environment.TickCount;
        }
All Usage Examples Of GameBase.Core.TimeOut::SetInterval