Vecs and Ints [SOLVED]

Just a little question here. If I want to store two integer values, should I make two variables and just puts the ints in them, or should I use a Vec2?

a Vec2 is a special class which intention is vectorial calculations. so as long as your two values don’t describe a 2-dimensional vector that you have to work with you don’t need that class

Or you could use a tuple. Like (3, 6.4) or so.

Thanks for the responses, guys.