ArkaliaCore.Game.Utilities.GuidGenerator.Update C# (CSharp) Method

Update() public method

public Update ( int value ) : void
value int
return void
        public void Update(int value)
        {
            if (value > this.Value)
            {
                this.Value = value + 1;
            }
        }
GuidGenerator