예제 #1
0
파일: Grapple.cs 프로젝트: EluardJ/ggj2021
    public void Grab(Movable movable)
    {
        if (movable != null)
        {
            movable.grapple = this;
        }

        state = State.Grabbing;

        thrower.Grab();
    }