mirror of
https://github.com/Fluffy-Bean/Lynxie.git
synced 2025-05-14 08:02:17 +00:00
5 lines
87 B
Go
5 lines
87 B
Go
package color
|
|
|
|
func RGBToDiscord(r, g, b int) int {
|
|
return (r << 16) + (g << 8) + b
|
|
}
|