2022-12-31 08:35:58 +00:00
|
|
|
#pragma once
|
|
|
|
|
2023-02-22 09:33:36 +00:00
|
|
|
struct ImFont; // forward declaration from imgui/imgui.h
|
2023-01-06 16:27:39 +00:00
|
|
|
|
2023-02-22 09:33:36 +00:00
|
|
|
struct Config; // forward declaration from config.h
|
|
|
|
class LogcatThread; // forward declaration from logcat_thread.h
|
2022-12-31 08:35:58 +00:00
|
|
|
|
2023-02-04 07:31:50 +00:00
|
|
|
void event_loop(ImFont* monospace_font, Config& active_config, LogcatThread& logcat_thread);
|