new clickgui, still need to add dragging

This commit is contained in:
kawaiizenbo 2023-06-28 22:21:04 -07:00
parent b58eedfb9c
commit 6e584de0e6
17 changed files with 129 additions and 46 deletions

View file

@ -32,4 +32,9 @@ public class ColorUtils
{
return ((a&0x0ff)<<24)|((r&0x0ff)<<16)|((g&0x0ff)<<8)|(b&0x0ff);
}
public static int rgbToInt(int r, int g, int b)
{
return ((r&0x0ff)<<16)|((g&0x0ff)<<8)|(b&0x0ff);
}
}