Guest User

Untitled

a guest
Sep 16th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. (function int Clamp(int i, int min, int max) { if (i < min) return min; if (i > max) return max; return i; })
Advertisement
Add Comment
Please, Sign In to add comment