ArkaliaCore.Game.Utilities.GuidGenerator.Update C# (CSharp) Méthode

Update() public méthode

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