12 lines
213 B
Plaintext
12 lines
213 B
Plaintext
declare struct Color(raw: bounded)
|
|
[[
|
|
BLACK: Color(0b),
|
|
WHITE: Color(65535b),
|
|
RED: Color(63488b),
|
|
GREEN: Color(2016b),
|
|
BLUE: Color(31b)
|
|
]]
|
|
|
|
declare contract Gfx host {
|
|
fn clear(color: Color): void;
|
|
} |