6 lines
105 B
Odin
6 lines
105 B
Odin
package images
|
|
|
|
Image :: struct {
|
|
width, height, channels: i32,
|
|
pixels: []u8,
|
|
}
|