From 83181a3ddeb3dfc9586a8a44e95f8ff85c2f3a1a Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Sun, 16 Dec 2018 14:09:02 -0800 Subject: [PATCH] add Color3b type --- math/color.go | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 math/color.go diff --git a/math/color.go b/math/color.go new file mode 100644 index 0000000..5810bba --- /dev/null +++ b/math/color.go @@ -0,0 +1,5 @@ +package math + +type Color3b struct { + R, G, B byte +}