new clickgui, still need to add dragging
This commit is contained in:
parent
b58eedfb9c
commit
6e584de0e6
17 changed files with 129 additions and 46 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue