// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
#pragma once
///
/// The controller object for the tracking events for the editor analytics.
///
class EditorAnalyticsController
{
public:
///
/// Starts the service (registers to event handlers).
///
void Init();
///
/// Ends the service (unregisters to event handlers).
///
void Cleanup();
};