Skip to content

Commit

Permalink
Cleaning up imports
Browse files Browse the repository at this point in the history
  • Loading branch information
colincornaby committed Aug 6, 2023
1 parent e178f52 commit 2c0ce46
Showing 1 changed file with 21 additions and 22 deletions.
43 changes: 21 additions & 22 deletions Sources/Plasma/Apps/plClient/Mac-Cocoa/main.mm
Original file line number Diff line number Diff line change
Expand Up @@ -40,39 +40,38 @@
*==LICENSE==*/

// System Frameworks
#import <Cocoa/Cocoa.h>
#import <QuartzCore/QuartzCore.h>

// Cocoa client
#import "PLSKeyboardEventMonitor.h"
#include "plClient/plClient.h"
#include "plClient/plClientLoader.h"
#include "plCmdParser.h"
#include "plProduct.h"
#if PLASMA_PIPELINE_GL
#include "pfGLPipeline/plGLPipeline.h"
#endif
#import "PLSLoginWindowController.h"
#import "PLSPatcherWindowController.h"
#import "PLSServerStatus.h"
#import "PLSView.h"
#import "StringTheory_NSString.h"

// stdlib
#include <algorithm>
#include <regex>
#include <unordered_set>

#include "PLSPatcherWindowController.h"
// Plasma engine
#include "plClient/plClient.h"
#include "plClient/plClientLoader.h"
#include "plCmdParser.h"
#include "pfConsoleCore/pfConsoleEngine.h"
#include "pfGameGUIMgr/pfGameGUIMgr.h"
#include "plInputCore/plInputDevice.h"
#include "plNetClient/plNetClientMgr.h"
#include "plNetGameLib/plNetGameLib.h"

#include "PLSLoginWindowController.h"
#include "PLSServerStatus.h"

#import "Cocoa/Cocoa.h"
#if PLASMA_PIPELINE_GL
#import <OpenGL/gl.h>
#endif
#import <QuartzCore/QuartzCore.h>
#import "PLSKeyboardEventMonitor.h"
#import "PLSView.h"
#include "plMessage/plDisplayScaleChangedMsg.h"
#include "plNetClient/plNetClientMgr.h"
#include "plNetGameLib/plNetGameLib.h"
#include "plProduct.h"

#include "StringTheory_NSString.h"
// Until a pipeline is integrated with macOS, need to import the
// abstract definition.
#include "plPipeline/pl3DPipeline.h"

void PumpMessageQueueProc();

Expand Down

0 comments on commit 2c0ce46

Please sign in to comment.