mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
16 lines
213 B
V
16 lines
213 B
V
module gx
|
|
|
|
pub struct Image {
|
|
mut:
|
|
obj voidptr
|
|
pub:
|
|
id int
|
|
width int
|
|
height int
|
|
}
|
|
|
|
// is_empty returns true if the Image `i` is empty.
|
|
pub fn (i Image) is_empty() bool {
|
|
return i.obj == unsafe { nil }
|
|
}
|