Unmark some structs as pub
This commit is contained in:
parent
2f29434af0
commit
96d34bc043
5 changed files with 11 additions and 12 deletions
|
|
@ -34,11 +34,11 @@ surfaces: struct {
|
|||
pending_manage: PendingManage = .{},
|
||||
pending_render: PendingRender = .{},
|
||||
|
||||
pub const PendingManage = struct {
|
||||
const PendingManage = struct {
|
||||
output_geometry: bool = false,
|
||||
};
|
||||
|
||||
pub const PendingRender = struct {
|
||||
const PendingRender = struct {
|
||||
position: ?struct { x: i32, y: i32 } = null,
|
||||
draw: bool = false,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue