Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kimshrier committed Jan 22, 2024
1 parent 4d53e7d commit eb590b1
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions examples/term.ui/cursor_chaser.v
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ fn event(e &tui.Event, mut app App) {
}

type EventFn = fn (&tui.Event, voidptr)

type FrameFn = fn (voidptr)

fn main() {
Expand Down
3 changes: 3 additions & 0 deletions examples/term.ui/pong.v
Original file line number Diff line number Diff line change
Expand Up @@ -481,8 +481,11 @@ fn event(e &ui.Event, mut app App) {
}

type InitFn = fn (voidptr)

type EventFn = fn (&ui.Event, voidptr)

type FrameFn = fn (voidptr)

type CleanupFn = fn (voidptr)

fn main() {
Expand Down
1 change: 1 addition & 0 deletions examples/term.ui/rectangles.v
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ fn frame(mut app App) {
}

type EventFn = fn (&tui.Event, voidptr)

type FrameFn = fn (voidptr)

fn main() {
Expand Down
1 change: 1 addition & 0 deletions examples/term.ui/term_drawing.v
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ mut:
}

type EventFn = fn (&ui.Event, voidptr)

type FrameFn = fn (voidptr)

fn main() {
Expand Down
2 changes: 2 additions & 0 deletions examples/term.ui/text_editor.v
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,9 @@ fn event(e &tui.Event, mut a App) {
}

type InitFn = fn (voidptr)

type EventFn = fn (&tui.Event, voidptr)

type FrameFn = fn (voidptr)

fn main() {
Expand Down
2 changes: 2 additions & 0 deletions examples/term.ui/vyper.v
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,9 @@ fn (mut a App) draw_gameover() {
}

type InitFn = fn (voidptr)

type EventFn = fn (&termui.Event, voidptr)

type FrameFn = fn (voidptr)

fn main() {
Expand Down

0 comments on commit eb590b1

Please sign in to comment.