#ifndef FSCORD_H #define FSCORD_H #include #include #include #include #include #include #include #include typedef struct Fscord { Arena perma_arena; Arena frame_arena; OSWindow *window; OSOffscreenBuffer *offscreen_buffer; OSSoundPlayer *sound_player; OSSoundBuffer *sound_buffer; Font font; Sound *sound_user_connected; Sound *sound_user_disconnected; PlaySound ps_user_connected; PlaySound ps_user_disconnected; b32 is_logged_in; Login *login; Session *session; } Fscord; #endif // FSCORD_H