mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-23 02:25:52 -04:00
54d7eb0662
Tried to correct the fact that SFML does not intercept events when used on a wxSFMLCanvas on linux by emulating these events. TODO: Test it Adapted to changes in GDCore. git-svn-id: svn://localhost@701 8062f311-0dae-4547-b526-b8ab9ac864a5
15 lines
197 B
C++
15 lines
197 B
C++
#ifndef LOGMANAGER_H
|
|
#define LOGMANAGER_H
|
|
|
|
|
|
class LogManager
|
|
{
|
|
public:
|
|
LogManager();
|
|
virtual ~LogManager();
|
|
protected:
|
|
private:
|
|
};
|
|
|
|
#endif // LOGMANAGER_H
|