Exemplo n.º 1
0
    public virtual void Update(float deltaTime)
    {
        _time            = _time + deltaTime;
        _damagedCooldown = _damagedCooldown - deltaTime;

        if (_physics != null)
        {
            _physics.ApplyPhysics(chunk, this, deltaTime, ref _worldPosition);
        }
    }