mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-05-02 02:23:56 +00:00
Remove unused `using namespace Extensions` from isleapp.cpp and replace per-header forward declaration blocks in 7 LEGO1 headers with a single shared forward declarations header. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
341 B
C++
24 lines
341 B
C++
#ifndef EXTENSIONS_FWD_H
|
|
#define EXTENSIONS_FWD_H
|
|
|
|
namespace Extensions
|
|
{
|
|
class MultiplayerExt;
|
|
namespace Common
|
|
{
|
|
class CharacterCloner;
|
|
}
|
|
namespace ThirdPersonCamera
|
|
{
|
|
class OrbitCamera;
|
|
}
|
|
} // namespace Extensions
|
|
|
|
namespace Multiplayer
|
|
{
|
|
class NetworkManager;
|
|
class WorldStateSync;
|
|
} // namespace Multiplayer
|
|
|
|
#endif // EXTENSIONS_FWD_H
|