diff options
| author | Aldrik Ramaekers <aldrikboy@gmail.com> | 2025-08-08 22:04:47 +0200 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrikboy@gmail.com> | 2025-08-08 22:04:47 +0200 |
| commit | b94a7ae06b20d550c727d5192cea8baf3e8fb641 (patch) | |
| tree | 3258eb27e2e3f266f8c220662ebb24ebe3071b79 /src/views/views.hpp | |
| parent | 21496e32695744d4679fc11105352c61522ce601 (diff) | |
project crud
Diffstat (limited to 'src/views/views.hpp')
| -rw-r--r-- | src/views/views.hpp | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/views/views.hpp b/src/views/views.hpp index 2ebdedd..f47bf3a 100644 --- a/src/views/views.hpp +++ b/src/views/views.hpp @@ -1,6 +1,15 @@ #pragma once -#include "../locales/locales.hpp" +typedef enum +{ + LIST, + EDIT, + CREATE, + VIEW, +} view_state; + +void view_draw_required_tag(); void views_draw_dashboard(); -void views_draw_contacts();
\ No newline at end of file +void views_draw_contacts(); +void views_draw_projects();
\ No newline at end of file |
