add Color3b type

This commit is contained in:
Alex Yatskov 2018-12-16 14:09:02 -08:00
parent 476f318dba
commit 83181a3dde

5
math/color.go Normal file
View File

@ -0,0 +1,5 @@
package math
type Color3b struct {
R, G, B byte
}