isle-portable/extensions/include/extensions/fwd.h
Christian Semmler 4269a1b0fc
Consolidate extension forward declarations into extensions/fwd.h
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>
2026-03-13 15:28:45 -07:00

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