14 lines
281 B
Python
14 lines
281 B
Python
COLORS = {
|
|
"red": (1.0, 0.0, 0.0, 1.0),
|
|
"green": (0.0, 1.0, 0.0, 1.0),
|
|
"blue": (0.0, 0.0, 1.0, 1.0),
|
|
"white": (1.0, 1.0, 1.0, 1.0),
|
|
}
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class Texture:
|
|
color: tuple[float, float, float, float] = (1.0, 1.0, 1.0, 1.0)
|