Raylib IsMouseButtonPressed Issue

Hello y’all. I am fairly new to programming in general, but I’ve discovered Odin and dove into it and am having a blast learning it in my free time. Anywho

I’m using Raylib and I’m running into an issue with IsMouseButtonPressed. MOUSE_BUTTON_LEFT is Undeclared. Actually all the MOUSE_BUTTON_x enum types are undeclared.

The odd thing is if I try to create a variable of type MouseButton, The compiler says MouseButton doesn’t exist as a type… But if I try and override by using the numeral value of each enum type, it says it can’t cast from unsigned int to MouseButton. ← This could definitely be a noob thing I’m not sure

It’s probably me doing something wrong, but I’ve referenced the Raylib.h from the github and that’s what it should be. So I’m not sure! Any help would be great. Thanks

Never mind, it’s just me being a noob LOL

It’s just .LEFT in the Odin binding I guess!
Guess I’ll just leave this here if any other scrubs need it