Working but nothing so far

This commit is contained in:
Crizomb 2025-09-26 02:14:10 +02:00
parent 6ed5b21890
commit c0c129db88
5 changed files with 136 additions and 35 deletions

View file

@ -3,3 +3,9 @@ package main
type Color interface {
GetColor(Vector3) Vector3
}
var RED = Vector3{255, 0, 0}
var GREEN = Vector3{0, 255, 0}
var BLUE = Vector3{0, 0, 255}
var WHITE = Vector3{255, 255, 255}
var GREY = Vector3{127, 127, 127}