about_view.h 202 B

1234567891011
  1. #pragma once
  2. #include <gui/view.h>
  3. typedef struct AboutView AboutView;
  4. AboutView* about_view_alloc();
  5. void about_view_free(AboutView* about_view);
  6. View* about_view_get_view(AboutView* about_view);