So basically, an user is gonna type in the hours in a inputfield and im gonna get the amount they write as an int in my code.
public InputField hours, minutes;
public int wantedHours, wantedMinutes;
Basically what i want is that people are gonna write a value in the inputfields. One of the inputfields is gonna be the "hours" you see in my code and the other one is gonna be "minutes". What i want is to get those inputfield inputs as "wantedHours" and "wantedMinutes" you see in my code.