raylib-tools.h 198 B

12345678910
  1. #ifndef RAYLIB_TOOLS_H_GUARD_
  2. #define RAYLIB_TOOLS_H_GUARD_
  3. #include "raylib.h"
  4. bool IsInRect( Rectangle rect, Vector2 pos );
  5. float ClampFloat ( float val, float lolimit, float hilimit );
  6. #endif