UserControl.Awake C# (CSharp) Method

Awake() private method

Get the basics components the player need
private Awake ( ) : void
return void
    void Awake()
    {
        movePlayer = GetComponent<Movement>();
        jumpPlayer = GetComponent<Jump>();
    }