mirror of
https://github.com/debauchee/barrier.git
synced 2026-07-10 13:57:44 +08:00
- made unit testing easier by (mostly) removing the event queue singleton.
- fixed code style in many places (mostly indentation).
This commit is contained in:
@@ -18,13 +18,8 @@
|
||||
|
||||
#include "CPlatformScreen.h"
|
||||
|
||||
CPlatformScreen::CPlatformScreen()
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
CPlatformScreen::CPlatformScreen(IEventQueue& eventQueue) :
|
||||
IPlatformScreen(eventQueue)
|
||||
CPlatformScreen::CPlatformScreen(IEventQueue* events) :
|
||||
IPlatformScreen(events)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user