mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
19 lines
291 B
C++
19 lines
291 B
C++
#pragma once
|
|
|
|
namespace Modules
|
|
{
|
|
namespace Startup
|
|
{
|
|
|
|
// Abstract class for any input/interaction with this module.
|
|
|
|
class ControllerInterface
|
|
{
|
|
public:
|
|
virtual void init() = 0;
|
|
|
|
virtual bool shouldStartWithOnboardingScreen() = 0;
|
|
};
|
|
} // namespace Startup
|
|
} // namespace Modules
|