├── .gitattributes ├── .gitignore ├── Assets ├── JServerInfo.txt ├── Lithtech.exe ├── Mod │ ├── Attributes │ │ ├── Jukebox.txt │ │ └── Layout.txt │ ├── Interface │ │ ├── Fonts │ │ │ └── FiraCode-Regular.ttf │ │ ├── console.PCX │ │ └── console.dtx │ └── Music │ │ └── Japan │ │ └── JapanJukebox.txt ├── ModernizerReadme.txt ├── Profiles │ └── Default.prf ├── controls.cfg └── potential music names.txt ├── BuildDebug.bat ├── BuildFinal.bat ├── BuildRelease.bat ├── EULA.htm ├── Engine └── sdk │ ├── Legal.txt │ ├── inc │ ├── LTEulerAngles.cpp │ ├── LTEulerAngles.h │ ├── Makefile │ ├── clientheaders.h │ ├── cui.h │ ├── cuibase.h │ ├── cuibutton.h │ ├── cuicheck.h │ ├── cuidropdownlist.h │ ├── cuifont.h │ ├── cuiformattedpolystring.h │ ├── cuiinterval.h │ ├── cuilist.h │ ├── cuimessage.h │ ├── cuioption.h │ ├── cuipolystring.h │ ├── cuiprogress.h │ ├── cuislider.h │ ├── cuistaticimage.h │ ├── cuistatictext.h │ ├── cuitypes.h │ ├── cuiwidget.h │ ├── cuiwindow.h │ ├── iaggregate.h │ ├── iclientshell.h │ ├── iltbaseclass.cpp │ ├── iltbaseclass.h │ ├── iltbenchmark.h │ ├── iltclient.h │ ├── iltcommon.h │ ├── iltcsbase.h │ ├── iltcursor.h │ ├── iltdirectmusic.h │ ├── iltdrawprim.h │ ├── iltesd.h │ ├── iltfontmanager.h │ ├── iltinfo.h │ ├── iltmath.h │ ├── iltmemory.h │ ├── iltmessage.h │ ├── iltmodel.h │ ├── iltphysics.h │ ├── iltpreinterface.h │ ├── iltrefcount.h │ ├── iltremovablestoragemgr.h │ ├── iltrenderstyles.h │ ├── iltserver.h │ ├── iltsoundmgr.h │ ├── iltspritecontrol.h │ ├── iltstream.h │ ├── ilttexinterface.h │ ├── ilttransform.h │ ├── iltvideomgr.h │ ├── iltwidgetmanager.h │ ├── iobjectplugin.h │ ├── iservershell.h │ ├── libltdiagnostics.h │ ├── libltinfo.h │ ├── libltinfo │ │ └── iltoutputredir.h │ ├── libltphysics.h │ ├── lithtech.h │ ├── ltanimtracker.h │ ├── ltassert.h │ ├── ltbasedefs.h │ ├── ltbasetypes.h │ ├── ltbeziercurve.h │ ├── ltcodes.h │ ├── ltdistrchatdefs.h │ ├── ltengineobjects.cpp │ ├── ltengineobjects.h │ ├── lterror.cpp │ ├── lterror.h │ ├── ltinteger.h │ ├── ltlink.h │ ├── ltmatrix.h │ ├── ltmem.h │ ├── ltmodule.cpp │ ├── ltmodule.h │ ├── ltobjectcreate.h │ ├── ltobjref.cpp │ ├── ltobjref.h │ ├── ltplane.h │ ├── ltproperty.h │ ├── ltpvalue.h │ ├── ltquatbase.cpp │ ├── ltquatbase.h │ ├── ltrect.h │ ├── ltrenderstyle.h │ ├── ltrotation.h │ ├── ltserverobj.h │ ├── ltsysoptim.h │ ├── ltvector.h │ ├── physics │ │ ├── aabb.h │ │ ├── aabb_tree.h │ │ ├── build_aabb.h │ │ ├── collision_data.h │ │ ├── collision_mgr.h │ │ ├── collision_notify.h │ │ ├── collision_object.h │ │ ├── collision_stream.h │ │ ├── coordinate_frame.h │ │ ├── cylinder.h │ │ ├── gjk.h │ │ ├── math_phys.h │ │ ├── matrix.h │ │ ├── move_object.h │ │ ├── obb.h │ │ ├── quaternion.h │ │ ├── rigid_body.h │ │ ├── sphere.h │ │ ├── triangle.h │ │ └── vector.h │ ├── server_interface.h │ ├── serverheaders.h │ └── sys │ │ └── win │ │ └── winoptim.h │ ├── lib │ └── server.lib │ ├── rez │ └── Engine.REZ │ └── win │ └── lib │ └── bink │ └── binkw32.dll ├── Game ├── AutoRun2 │ ├── AutoRun.ico │ ├── AutoRun2.aps │ ├── AutoRun2.cpp │ ├── AutoRun2.dsp │ ├── AutoRun2.rc │ ├── AutoRun2.vcxproj │ ├── AutoRun2.vcxproj.filters │ ├── AutoRun2.vcxproj.user │ ├── ReadMe.txt │ ├── StdAfx.cpp │ ├── StdAfx.h │ └── resource.h ├── Autorun │ ├── AutoRun.aps │ ├── AutoRun.cpp │ ├── AutoRun.dsp │ ├── AutoRun.dsw │ ├── AutoRun.exe │ ├── AutoRun.ico │ ├── AutoRun.inf │ ├── AutoRun.ncb │ ├── AutoRun.opt │ ├── AutoRun.rc │ ├── AutoRun.vcxproj │ ├── AutoRun.vcxproj.user │ ├── STDAFX.H │ ├── Utils.cpp │ ├── Utils.h │ ├── mssccprj.scc │ └── resource.h ├── ClientFxDLL │ ├── BaseFx.cpp │ ├── ClientFxDLL.dsp │ ├── ClientFxDLL.vcxproj │ ├── ClientFxDLL.vcxproj.filters │ ├── ClientFxDLL.vcxproj.user │ ├── CreateFX.cpp │ ├── CreateFX.h │ ├── FlareSpriteFX.cpp │ ├── FlareSpriteFX.h │ ├── LTBbouncychunkfx.cpp │ ├── LTBbouncychunkfx.h │ ├── ParticleSystemFX.cpp │ ├── ParticleSystemFX.h │ ├── bouncychunkfx.cpp │ ├── bouncychunkfx.h │ ├── camjitterfx.cpp │ ├── camjitterfx.h │ ├── camwobblefx.cpp │ ├── camwobblefx.h │ ├── clientfx.cpp │ ├── clientfx.h │ ├── cycletimer.cpp │ ├── cycletimer.h │ ├── dynalightfx.cpp │ ├── dynalightfx.h │ ├── fallingstufffx.cpp │ ├── fallingstufffx.h │ ├── lightningfx.cpp │ ├── lightningfx.h │ ├── ltbmodelfx.cpp │ ├── ltbmodelfx.h │ ├── memarray.h │ ├── nullfx.cpp │ ├── nullfx.h │ ├── playrandomsoundfx.cpp │ ├── playrandomsoundfx.h │ ├── playsoundfx.cpp │ ├── playsoundfx.h │ ├── polyfanfx.cpp │ ├── polyfanfx.h │ ├── polytubefx.cpp │ ├── polytubefx.h │ ├── resource.h │ ├── screentrail.cpp │ ├── screentrail.h │ ├── spritefx.cpp │ ├── spritefx.h │ ├── spritesystemfx.cpp │ ├── spritesystemfx.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── swaplist.h ├── ClientRes │ ├── Shared │ │ ├── ClientResShared.h │ │ ├── Lang │ │ │ ├── DE │ │ │ │ └── ClientResShared.rc │ │ │ ├── EN │ │ │ │ └── ClientResShared.rc │ │ │ ├── ES │ │ │ │ └── ClientResShared.rc │ │ │ ├── FR │ │ │ │ └── ClientResShared.rc │ │ │ └── IT │ │ │ │ └── ClientResShared.rc │ │ └── arrow.cur │ └── TO2 │ │ ├── ClientRes.dsp │ │ ├── ClientRes.h │ │ ├── ClientRes.vcxproj │ │ ├── ClientRes.vcxproj.filters │ │ ├── ClientRes.vcxproj.user │ │ ├── Lang │ │ ├── DE │ │ │ ├── ClientRes.rc │ │ │ ├── credits.txt │ │ │ └── intro.txt │ │ ├── EN │ │ │ ├── ClientRes.rc │ │ │ ├── credits.txt │ │ │ └── intro.txt │ │ ├── ES │ │ │ ├── ClientRes.rc │ │ │ ├── credits.txt │ │ │ └── intro.txt │ │ ├── FR │ │ │ ├── ClientRes.rc │ │ │ ├── credits.txt │ │ │ └── intro.txt │ │ └── IT │ │ │ ├── ClientRes.rc │ │ │ ├── credits.txt │ │ │ └── intro.txt │ │ ├── main.cpp │ │ └── samplecredits.txt ├── ClientShellDLL │ ├── ClientShellShared │ │ ├── ActivateObjectFX.cpp │ │ ├── ActivateObjectFX.h │ │ ├── BaseHUDItem.cpp │ │ ├── BaseHUDItem.h │ │ ├── BaseLineSystemFX.cpp │ │ ├── BaseLineSystemFX.h │ │ ├── BaseMenu.cpp │ │ ├── BaseMenu.h │ │ ├── BaseParticleSystemFX.cpp │ │ ├── BaseParticleSystemFX.h │ │ ├── BasePolyDrawFX.cpp │ │ ├── BasePolyDrawFX.h │ │ ├── BaseScaleFX.cpp │ │ ├── BaseScaleFX.h │ │ ├── BaseScreen.cpp │ │ ├── BaseScreen.h │ │ ├── BeamFX.cpp │ │ ├── BeamFX.h │ │ ├── BodyFX.cpp │ │ ├── BodyFX.h │ │ ├── BulletTrailFX.cpp │ │ ├── BulletTrailFX.h │ │ ├── CMoveMgr.cpp │ │ ├── CMoveMgr.h │ │ ├── CameraFX.h │ │ ├── CameraOffsetMgr.cpp │ │ ├── CameraOffsetMgr.h │ │ ├── ChainedFX.cpp │ │ ├── ChainedFX.h │ │ ├── CharacterFX.cpp │ │ ├── CharacterFX.h │ │ ├── CheatMgr.cpp │ │ ├── CheatMgr.h │ │ ├── ClientButeMgr.cpp │ │ ├── ClientButeMgr.h │ │ ├── ClientFXDB.cpp │ │ ├── ClientFXDB.h │ │ ├── ClientFXMgr.cpp │ │ ├── ClientFXMgr.h │ │ ├── ClientInfoMgr.cpp │ │ ├── ClientInfoMgr.h │ │ ├── ClientMultiplayerMgr.cpp │ │ ├── ClientMultiplayerMgr.h │ │ ├── ClientSaveLoadMgr.cpp │ │ ├── ClientSaveLoadMgr.h │ │ ├── ClientShellShared.dsp │ │ ├── ClientShellShared.vcxproj │ │ ├── ClientShellShared.vcxproj.filters │ │ ├── ClientShellShared.vcxproj.user │ │ ├── ClientSoundMgr.cpp │ │ ├── ClientSoundMgr.h │ │ ├── ClientTrackedNodeContext.cpp │ │ ├── ClientTrackedNodeContext.h │ │ ├── ClientTrackedNodeMgr.cpp │ │ ├── ClientTrackedNodeMgr.h │ │ ├── ClientUtilities.cpp │ │ ├── ClientUtilities.h │ │ ├── ClientWeapon.cpp │ │ ├── ClientWeapon.h │ │ ├── ClientWeaponAllocator.h │ │ ├── ClientWeaponBase.h │ │ ├── ClientWeaponMgr.cpp │ │ ├── ClientWeaponMgr.h │ │ ├── ClientWeaponNone.h │ │ ├── ClientWeaponUtils.cpp │ │ ├── ClientWeaponUtils.h │ │ ├── ConsoleMgr.cpp │ │ ├── ConsoleMgr.h │ │ ├── Credits.cpp │ │ ├── Credits.h │ │ ├── CursorMgr.cpp │ │ ├── CursorMgr.h │ │ ├── DamageFXMgr.cpp │ │ ├── DamageFXMgr.h │ │ ├── DeathFX.cpp │ │ ├── DeathFX.h │ │ ├── DebrisFX.cpp │ │ ├── DebrisFX.h │ │ ├── DebugLineFX.cpp │ │ ├── DebugLineFX.h │ │ ├── DoomsdayPieceFX.cpp │ │ ├── DoomsdayPieceFX.h │ │ ├── DynamicLightFX.cpp │ │ ├── DynamicLightFX.h │ │ ├── DynamicOccluderVolumeFX.cpp │ │ ├── DynamicOccluderVolumeFX.h │ │ ├── ExplosionFX.cpp │ │ ├── ExplosionFX.h │ │ ├── FastList.h │ │ ├── FireFX.cpp │ │ ├── FireFX.h │ │ ├── FlashLight.cpp │ │ ├── FlashLight.h │ │ ├── FullScreenTint.cpp │ │ ├── FullScreenTint.h │ │ ├── GadgetDisabler.cpp │ │ ├── GadgetDisabler.h │ │ ├── GadgetTargetFX.cpp │ │ ├── GadgetTargetFX.h │ │ ├── GameButes.h │ │ ├── GameClientShell.cpp │ │ ├── GameClientShell.h │ │ ├── GameInputMgr.cpp │ │ ├── GameInputMgr.h │ │ ├── GameSettings.cpp │ │ ├── GameSettings.h │ │ ├── GibFX.cpp │ │ ├── GibFX.h │ │ ├── GlobalClientMgr.cpp │ │ ├── GlobalClientMgr.h │ │ ├── HUDBar.cpp │ │ ├── HUDBar.h │ │ ├── HUDChatInput.cpp │ │ ├── HUDChatInput.h │ │ ├── HUDConsoleLines.cpp │ │ ├── HUDConsoleLines.h │ │ ├── HUDDamage.cpp │ │ ├── HUDDamage.h │ │ ├── HUDDecision.cpp │ │ ├── HUDDecision.h │ │ ├── HUDDisplayMeter.cpp │ │ ├── HUDDisplayMeter.h │ │ ├── HUDDistance.cpp │ │ ├── HUDDistance.h │ │ ├── HUDItem.h │ │ ├── HUDMessage.cpp │ │ ├── HUDMessage.h │ │ ├── HUDMessageQueue.cpp │ │ ├── HUDMessageQueue.h │ │ ├── HUDMeter.cpp │ │ ├── HUDMeter.h │ │ ├── HUDMgr.cpp │ │ ├── HUDMgr.h │ │ ├── HUDMissionText.cpp │ │ ├── HUDMissionText.h │ │ ├── HUDPaused.cpp │ │ ├── HUDPaused.h │ │ ├── HUDPopup.cpp │ │ ├── HUDPopup.h │ │ ├── HUDRadar.cpp │ │ ├── HUDRadar.h │ │ ├── HUDScores.cpp │ │ ├── HUDScores.h │ │ ├── HUDSubtitles.cpp │ │ ├── HUDSubtitles.h │ │ ├── HUDTakeDamage.cpp │ │ ├── HUDTakeDamage.h │ │ ├── HUDTransmission.cpp │ │ ├── HUDTransmission.h │ │ ├── HeadBobMgr.cpp │ │ ├── HeadBobMgr.h │ │ ├── HitBox.cpp │ │ ├── HitBox.h │ │ ├── InputMgr.h │ │ ├── IntelItemList.cpp │ │ ├── IntelItemList.h │ │ ├── InterfaceMgr.cpp │ │ ├── InterfaceMgr.h │ │ ├── InterfaceResMgr.cpp │ │ ├── InterfaceResMgr.h │ │ ├── InterfaceSurfMgr.cpp │ │ ├── InterfaceSurfMgr.h │ │ ├── InterfaceTimer.cpp │ │ ├── InterfaceTimer.h │ │ ├── IpMgr.cpp │ │ ├── IpMgr.h │ │ ├── JukeboxButeMgr.cpp │ │ ├── JukeboxButeMgr.h │ │ ├── JumpVolumeFX.cpp │ │ ├── JumpVolumeFX.h │ │ ├── LaserBeam.cpp │ │ ├── LaserBeam.h │ │ ├── LaserTriggerFX.cpp │ │ ├── LaserTriggerFX.h │ │ ├── LayoutMgr.cpp │ │ ├── LayoutMgr.h │ │ ├── LeanMgr.cpp │ │ ├── LeanMgr.h │ │ ├── LensFlareFX.cpp │ │ ├── LensFlareFX.h │ │ ├── LightFX.cpp │ │ ├── LightFX.h │ │ ├── LightGroupFX.cpp │ │ ├── LightGroupFX.h │ │ ├── LightScaleMgr.cpp │ │ ├── LightScaleMgr.h │ │ ├── LightningFX.cpp │ │ ├── LightningFX.h │ │ ├── LineSystemFX.cpp │ │ ├── LineSystemFX.h │ │ ├── LoadingScreen.cpp │ │ ├── LoadingScreen.h │ │ ├── MarkSFX.cpp │ │ ├── MarkSFX.h │ │ ├── MenuEnum.h │ │ ├── MenuIntel.cpp │ │ ├── MenuIntel.h │ │ ├── MenuInventory.cpp │ │ ├── MenuInventory.h │ │ ├── MenuKeys.cpp │ │ ├── MenuKeys.h │ │ ├── MenuMgr.cpp │ │ ├── MenuMgr.h │ │ ├── MenuMission.cpp │ │ ├── MenuMission.h │ │ ├── MenuPlayer.cpp │ │ ├── MenuPlayer.h │ │ ├── MenuSystem.cpp │ │ ├── MenuSystem.h │ │ ├── MessageBox.cpp │ │ ├── MessageBox.h │ │ ├── MineFX.cpp │ │ ├── MineFX.h │ │ ├── MissionMgr.cpp │ │ ├── MissionMgr.h │ │ ├── Music.cpp │ │ ├── Music.h │ │ ├── MuzzleFlashFX.cpp │ │ ├── MuzzleFlashFX.h │ │ ├── MuzzleFlashParticleFX.cpp │ │ ├── MuzzleFlashParticleFX.h │ │ ├── NodeController.cpp │ │ ├── NodeController.h │ │ ├── NodeLinesFX.cpp │ │ ├── NodeLinesFX.h │ │ ├── ObjSpriteFX.cpp │ │ ├── ObjSpriteFX.h │ │ ├── ObjectiveControl.cpp │ │ ├── ObjectiveControl.h │ │ ├── Overlays.h │ │ ├── PVFXMgr.cpp │ │ ├── PVFXMgr.h │ │ ├── ParticleExplosionFX.cpp │ │ ├── ParticleExplosionFX.h │ │ ├── ParticleShowerFX.cpp │ │ ├── ParticleShowerFX.h │ │ ├── ParticleSystemFX.cpp │ │ ├── ParticleSystemFX.h │ │ ├── ParticleTrailFX.cpp │ │ ├── ParticleTrailFX.h │ │ ├── ParticleTrailSegmentFX.cpp │ │ ├── ParticleTrailSegmentFX.h │ │ ├── PerformanceEnum.h │ │ ├── PerformanceMgr.cpp │ │ ├── PerformanceMgr.h │ │ ├── PerformanceTest.cpp │ │ ├── PerformanceTest.h │ │ ├── PickupItemFX.cpp │ │ ├── PickupItemFX.h │ │ ├── PlayerCamera.cpp │ │ ├── PlayerCamera.h │ │ ├── PlayerLureFX.cpp │ │ ├── PlayerLureFX.h │ │ ├── PlayerMgr.cpp │ │ ├── PlayerMgr.h │ │ ├── PlayerSoundFX.cpp │ │ ├── PlayerSoundFX.h │ │ ├── PlayerStats.cpp │ │ ├── PlayerStats.h │ │ ├── PlayerVehicleFX.cpp │ │ ├── PlayerVehicleFX.h │ │ ├── PlayerViewAttachmentMgr.cpp │ │ ├── PlayerViewAttachmentMgr.h │ │ ├── PolyDebrisFX.cpp │ │ ├── PolyDebrisFX.h │ │ ├── PolyGridFX.cpp │ │ ├── PolyGridFX.h │ │ ├── PolyLineFX.cpp │ │ ├── PolyLineFX.h │ │ ├── PolygridBuffer.h │ │ ├── PopupMgr.cpp │ │ ├── PopupMgr.h │ │ ├── PopupText.cpp │ │ ├── PopupText.h │ │ ├── ProfileMgr.cpp │ │ ├── ProfileMgr.h │ │ ├── ProjectileFX.cpp │ │ ├── ProjectileFX.h │ │ ├── RadarObjectFX.cpp │ │ ├── RadarObjectFX.h │ │ ├── RagDoll.cpp │ │ ├── RagDoll.h │ │ ├── RagDollConstraint.cpp │ │ ├── RagDollConstraint.h │ │ ├── RagDollDistanceConstraint.h │ │ ├── RagDollNode.h │ │ ├── RandomSparksFX.cpp │ │ ├── RandomSparksFX.h │ │ ├── SDLDInput8Conversion.h │ │ ├── SFXMgr.cpp │ │ ├── SFXMgr.h │ │ ├── ScatterFX.cpp │ │ ├── ScatterFX.h │ │ ├── ScmdConsoleDriver_CShell.cpp │ │ ├── ScmdConsoleDriver_CShell.h │ │ ├── ScreenCommands.h │ │ ├── ScreenEnum.h │ │ ├── ScreenMgr.cpp │ │ ├── ScreenMgr.h │ │ ├── ScreenPostload.cpp │ │ ├── ScreenPostload.h │ │ ├── ScreenPreload.cpp │ │ ├── ScreenPreload.h │ │ ├── ScreenSpriteMgr.cpp │ │ ├── ScreenSpriteMgr.h │ │ ├── ScreenTintMgr.cpp │ │ ├── ScreenTintMgr.h │ │ ├── SearchLightFX.cpp │ │ ├── SearchLightFX.h │ │ ├── Searcher.cpp │ │ ├── Searcher.h │ │ ├── SharedDefs.h │ │ ├── ShellCasingFX.cpp │ │ ├── ShellCasingFX.h │ │ ├── SkillControl.cpp │ │ ├── SkillControl.h │ │ ├── SmokeFX.cpp │ │ ├── SmokeFX.h │ │ ├── SnowFX.cpp │ │ ├── SnowFX.h │ │ ├── SoundFX.cpp │ │ ├── SoundFX.h │ │ ├── Sparam.cpp │ │ ├── Sparam.h │ │ ├── SpecialFX.h │ │ ├── SpecialFXList.cpp │ │ ├── SpecialFXList.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── SteamFX.cpp │ │ ├── SteamFX.h │ │ ├── SystemDependant.h │ │ ├── TargetMgr.cpp │ │ ├── TargetMgr.h │ │ ├── TextureFXMgr.cpp │ │ ├── TextureFXMgr.h │ │ ├── TimedText.cpp │ │ ├── TimedText.h │ │ ├── TracerFX.cpp │ │ ├── TracerFX.h │ │ ├── TransitionFXMgr.cpp │ │ ├── TransitionFXMgr.h │ │ ├── TriggerFX.cpp │ │ ├── TriggerFX.h │ │ ├── VKDefs.cpp │ │ ├── VKDefs.h │ │ ├── VarTrack.h │ │ ├── VehicleMgr.cpp │ │ ├── VehicleMgr.h │ │ ├── VisionModeMgr.cpp │ │ ├── VisionModeMgr.h │ │ ├── VolumeBrushFX.h │ │ ├── WeaponChooser.cpp │ │ ├── WeaponChooser.h │ │ ├── WeaponFX.cpp │ │ ├── WeaponFX.h │ │ ├── WeaponStringDefs.h │ │ ├── WeatherFX.cpp │ │ ├── WeatherFX.h │ │ ├── client_physics.cpp │ │ ├── client_physics.h │ │ ├── plasma.h │ │ ├── resource.h │ │ ├── sprinklesfx.cpp │ │ ├── sprinklesfx.h │ │ └── stack.h │ └── TO2 │ │ ├── ClientShellDLL.dsp │ │ ├── ClientShellDLL.vcxproj │ │ ├── ClientShellDLL.vcxproj.filters │ │ ├── ClientShellDLL.vcxproj.user │ │ ├── GlobalsInit.cpp │ │ ├── HUDAir.cpp │ │ ├── HUDAir.h │ │ ├── HUDAmmo.cpp │ │ ├── HUDAmmo.h │ │ ├── HUDCarrying.cpp │ │ ├── HUDCarrying.h │ │ ├── HUDChooser.cpp │ │ ├── HUDChooser.h │ │ ├── HUDCompass.cpp │ │ ├── HUDCompass.h │ │ ├── HUDCrosshair.cpp │ │ ├── HUDCrosshair.h │ │ ├── HUDDamageDir.cpp │ │ ├── HUDDamageDir.h │ │ ├── HUDDoomsday.cpp │ │ ├── HUDDoomsday.h │ │ ├── HUDFramerate.cpp │ │ ├── HUDFramerate.h │ │ ├── HUDHealth.cpp │ │ ├── HUDHealth.h │ │ ├── HUDHiding.cpp │ │ ├── HUDHiding.h │ │ ├── HUDHidingBar.cpp │ │ ├── HUDHidingBar.h │ │ ├── HUDObjectives.cpp │ │ ├── HUDObjectives.h │ │ ├── HUDProgressBar.cpp │ │ ├── HUDProgressBar.h │ │ ├── HUDRadio.cpp │ │ ├── HUDRadio.h │ │ ├── HUDRespawn.cpp │ │ ├── HUDRespawn.h │ │ ├── InfoFromSE.h │ │ ├── ScreenAudio.cpp │ │ ├── ScreenAudio.h │ │ ├── ScreenConfigure.cpp │ │ ├── ScreenConfigure.h │ │ ├── ScreenControls.cpp │ │ ├── ScreenControls.h │ │ ├── ScreenCrosshair.cpp │ │ ├── ScreenCrosshair.h │ │ ├── ScreenDisplay.cpp │ │ ├── ScreenDisplay.h │ │ ├── ScreenEndCoopMission.cpp │ │ ├── ScreenEndCoopMission.h │ │ ├── ScreenEndDMMission.cpp │ │ ├── ScreenEndDMMission.h │ │ ├── ScreenEndMission.cpp │ │ ├── ScreenEndMission.h │ │ ├── ScreenExperimental.cpp │ │ ├── ScreenExperimental.h │ │ ├── ScreenFailure.cpp │ │ ├── ScreenFailure.h │ │ ├── ScreenGame.cpp │ │ ├── ScreenGame.h │ │ ├── ScreenHost.cpp │ │ ├── ScreenHost.h │ │ ├── ScreenHostDDOptions.cpp │ │ ├── ScreenHostDDOptions.h │ │ ├── ScreenHostDMOptions.cpp │ │ ├── ScreenHostDMOptions.h │ │ ├── ScreenHostLevels.cpp │ │ ├── ScreenHostLevels.h │ │ ├── ScreenHostMission.cpp │ │ ├── ScreenHostMission.h │ │ ├── ScreenHostOptions.cpp │ │ ├── ScreenHostOptions.h │ │ ├── ScreenHostTDMOptions.cpp │ │ ├── ScreenHostTDMOptions.h │ │ ├── ScreenHostWeapons.cpp │ │ ├── ScreenHostWeapons.h │ │ ├── ScreenJoin.cpp │ │ ├── ScreenJoin.h │ │ ├── ScreenJoinLAN.cpp │ │ ├── ScreenJoinLAN.h │ │ ├── ScreenJoystick.cpp │ │ ├── ScreenJoystick.h │ │ ├── ScreenJukebox.cpp │ │ ├── ScreenJukebox.h │ │ ├── ScreenKeyboard.cpp │ │ ├── ScreenKeyboard.h │ │ ├── ScreenLoad.cpp │ │ ├── ScreenLoad.h │ │ ├── ScreenMain.cpp │ │ ├── ScreenMain.h │ │ ├── ScreenMouse.cpp │ │ ├── ScreenMouse.h │ │ ├── ScreenMulti.cpp │ │ ├── ScreenMulti.h │ │ ├── ScreenOptions.cpp │ │ ├── ScreenOptions.h │ │ ├── ScreenPerformance.cpp │ │ ├── ScreenPerformance.h │ │ ├── ScreenPlayer.cpp │ │ ├── ScreenPlayer.h │ │ ├── ScreenPlayerSkills.cpp │ │ ├── ScreenPlayerSkills.h │ │ ├── ScreenPlayerTeam.cpp │ │ ├── ScreenPlayerTeam.h │ │ ├── ScreenProfile.cpp │ │ ├── ScreenProfile.h │ │ ├── ScreenSave.cpp │ │ ├── ScreenSave.h │ │ ├── ScreenSingle.cpp │ │ ├── ScreenSingle.h │ │ ├── ScreenTeam.cpp │ │ ├── ScreenTeam.h │ │ ├── Stdafx.cpp │ │ ├── Stdafx.h │ │ ├── TO2ClientWeaponAllocator.cpp │ │ ├── TO2ClientWeaponAllocator.h │ │ ├── TO2GameClientShell.cpp │ │ ├── TO2GameClientShell.h │ │ ├── TO2HUDMgr.cpp │ │ ├── TO2HUDMgr.h │ │ ├── TO2InterfaceMgr.cpp │ │ ├── TO2InterfaceMgr.h │ │ ├── TO2LayoutMgr.cpp │ │ ├── TO2LayoutMgr.h │ │ ├── TO2PlayerMgr.cpp │ │ ├── TO2PlayerMgr.h │ │ ├── TO2PlayerStats.cpp │ │ ├── TO2PlayerStats.h │ │ ├── TO2ScreenMgr.cpp │ │ └── TO2ScreenMgr.h ├── Launcher │ ├── AniButton.cpp │ ├── AniButton.h │ ├── AnimDlg.cpp │ ├── AnimDlg.h │ ├── BitmapCheckButton.cpp │ ├── BitmapCheckButton.h │ ├── ButtonEx.cpp │ ├── ButtonEx.h │ ├── CustomizeDlg.cpp │ ├── CustomizeDlg.h │ ├── DetailSettingsDlg.cpp │ ├── DetailSettingsDlg.h │ ├── DisplayDlg.cpp │ ├── DisplayDlg.h │ ├── DisplayMgr.cpp │ ├── DisplayMgr.h │ ├── DlgEx.cpp │ ├── DlgEx.h │ ├── EditEx.cpp │ ├── EditEx.h │ ├── Launcher.cpp │ ├── Launcher.h │ ├── LauncherDlg.cpp │ ├── LauncherDlg.h │ ├── MessageBoxDlg.cpp │ ├── MessageBoxDlg.h │ ├── MoveDlg.cpp │ ├── MoveDlg.h │ ├── MultiplayerDlg.cpp │ ├── MultiplayerDlg.h │ ├── OptionsDlg.cpp │ ├── OptionsDlg.h │ ├── PlaySound.h │ ├── RezFind.cpp │ ├── RezFind.h │ ├── StaticEx.cpp │ ├── StaticEx.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── TO2 │ │ ├── Launcher.dsp │ │ ├── Launcher.vcxproj │ │ ├── Launcher.vcxproj.filters │ │ ├── Launcher.vcxproj.user │ │ ├── RES │ │ │ ├── Lang │ │ │ │ ├── DE │ │ │ │ │ ├── Launcher.aps │ │ │ │ │ ├── Launcher.rc │ │ │ │ │ └── bmp │ │ │ │ │ │ ├── BackD.bmp │ │ │ │ │ │ ├── BackF.bmp │ │ │ │ │ │ ├── BackU.bmp │ │ │ │ │ │ ├── CancelD.bmp │ │ │ │ │ │ ├── CancelF.bmp │ │ │ │ │ │ ├── CancelU.bmp │ │ │ │ │ │ ├── Company1WebD.bmp │ │ │ │ │ │ ├── Company1WebF.bmp │ │ │ │ │ │ ├── Company1WebU.bmp │ │ │ │ │ │ ├── Company2WebD.bmp │ │ │ │ │ │ ├── Company2WebF.bmp │ │ │ │ │ │ ├── Company2WebU.bmp │ │ │ │ │ │ ├── CustomBackground.bmp │ │ │ │ │ │ ├── CustomD.bmp │ │ │ │ │ │ ├── CustomF.bmp │ │ │ │ │ │ ├── CustomU.bmp │ │ │ │ │ │ ├── CustomX.bmp │ │ │ │ │ │ ├── DemoMainAppBackground.bmp │ │ │ │ │ │ ├── DetailSettingsBackground.bmp │ │ │ │ │ │ ├── DisplayBackground.bmp │ │ │ │ │ │ ├── DisplayD.bmp │ │ │ │ │ │ ├── DisplayF.bmp │ │ │ │ │ │ ├── DisplayU.bmp │ │ │ │ │ │ ├── DisplayX.bmp │ │ │ │ │ │ ├── HelpD.bmp │ │ │ │ │ │ ├── HelpF.bmp │ │ │ │ │ │ ├── HelpU.bmp │ │ │ │ │ │ ├── HighDetailD.bmp │ │ │ │ │ │ ├── HighDetailF.bmp │ │ │ │ │ │ ├── HighDetailU.bmp │ │ │ │ │ │ ├── InstallD.bmp │ │ │ │ │ │ ├── InstallF.bmp │ │ │ │ │ │ ├── InstallU.bmp │ │ │ │ │ │ ├── LowDetailD.bmp │ │ │ │ │ │ ├── LowDetailF.bmp │ │ │ │ │ │ ├── LowDetailU.bmp │ │ │ │ │ │ ├── MainAppBackground.bmp │ │ │ │ │ │ ├── MediumDetailD.bmp │ │ │ │ │ │ ├── MediumDetailF.bmp │ │ │ │ │ │ ├── MediumDetailU.bmp │ │ │ │ │ │ ├── NextD.bmp │ │ │ │ │ │ ├── NextF.bmp │ │ │ │ │ │ ├── NextU.bmp │ │ │ │ │ │ ├── NextX.bmp │ │ │ │ │ │ ├── OKD.bmp │ │ │ │ │ │ ├── OKU.bmp │ │ │ │ │ │ ├── OkF.bmp │ │ │ │ │ │ ├── OptionsBackground.bmp │ │ │ │ │ │ ├── OptionsF.bmp │ │ │ │ │ │ ├── OptionsX.bmp │ │ │ │ │ │ ├── PlayD.bmp │ │ │ │ │ │ ├── PlayF.bmp │ │ │ │ │ │ ├── PlayU.bmp │ │ │ │ │ │ ├── PreviousD.bmp │ │ │ │ │ │ ├── PreviousF.bmp │ │ │ │ │ │ ├── PreviousU.bmp │ │ │ │ │ │ ├── PreviousX.bmp │ │ │ │ │ │ ├── Publisher1WebD.bmp │ │ │ │ │ │ ├── Publisher1WebF.bmp │ │ │ │ │ │ ├── Publisher1WebU.bmp │ │ │ │ │ │ ├── Publisher2WebD.bmp │ │ │ │ │ │ ├── Publisher2WebF.bmp │ │ │ │ │ │ ├── Publisher2WebU.bmp │ │ │ │ │ │ ├── QuitD.bmp │ │ │ │ │ │ ├── QuitF.bmp │ │ │ │ │ │ ├── QuitU.bmp │ │ │ │ │ │ ├── ServerD.bmp │ │ │ │ │ │ ├── ServerF.bmp │ │ │ │ │ │ ├── ServerU.bmp │ │ │ │ │ │ ├── ServerX.bmp │ │ │ │ │ │ ├── UninstallD.bmp │ │ │ │ │ │ ├── UninstallF.bmp │ │ │ │ │ │ ├── UninstallU.bmp │ │ │ │ │ │ ├── UninstallX.bmp │ │ │ │ │ │ ├── optionsd.bmp │ │ │ │ │ │ └── optionsu.bmp │ │ │ │ ├── EN │ │ │ │ │ ├── Launcher.rc │ │ │ │ │ ├── PSD │ │ │ │ │ │ ├── Cancel.psd │ │ │ │ │ │ ├── CustomBackground.psd │ │ │ │ │ │ ├── DetailSettingsBackground.psd │ │ │ │ │ │ ├── DisplayBackground.psd │ │ │ │ │ │ ├── MainAppBackground.psd │ │ │ │ │ │ ├── Ok.psd │ │ │ │ │ │ ├── OptionsBackground.psd │ │ │ │ │ │ ├── custom.psd │ │ │ │ │ │ ├── next.psd │ │ │ │ │ │ └── previous.psd │ │ │ │ │ └── bmp │ │ │ │ │ │ ├── BackD.bmp │ │ │ │ │ │ ├── BackF.bmp │ │ │ │ │ │ ├── BackU.bmp │ │ │ │ │ │ ├── CancelD.bmp │ │ │ │ │ │ ├── CancelF.bmp │ │ │ │ │ │ ├── CancelU.bmp │ │ │ │ │ │ ├── Company1WebD.bmp │ │ │ │ │ │ ├── Company1WebF.bmp │ │ │ │ │ │ ├── Company1WebU.bmp │ │ │ │ │ │ ├── Company2WebD.bmp │ │ │ │ │ │ ├── Company2WebF.bmp │ │ │ │ │ │ ├── Company2WebU.bmp │ │ │ │ │ │ ├── CustomBackground.bmp │ │ │ │ │ │ ├── CustomD.bmp │ │ │ │ │ │ ├── CustomF.bmp │ │ │ │ │ │ ├── CustomU.bmp │ │ │ │ │ │ ├── CustomX.bmp │ │ │ │ │ │ ├── DemoMainAppBackground.bmp │ │ │ │ │ │ ├── DetailSettingsBackground.bmp │ │ │ │ │ │ ├── DisplayBackground.bmp │ │ │ │ │ │ ├── DisplayD.bmp │ │ │ │ │ │ ├── DisplayF.bmp │ │ │ │ │ │ ├── DisplayU.bmp │ │ │ │ │ │ ├── DisplayX.bmp │ │ │ │ │ │ ├── HelpD.bmp │ │ │ │ │ │ ├── HelpF.bmp │ │ │ │ │ │ ├── HelpU.bmp │ │ │ │ │ │ ├── HighDetailD.bmp │ │ │ │ │ │ ├── HighDetailF.bmp │ │ │ │ │ │ ├── HighDetailU.bmp │ │ │ │ │ │ ├── InstallD.bmp │ │ │ │ │ │ ├── InstallF.bmp │ │ │ │ │ │ ├── InstallU.bmp │ │ │ │ │ │ ├── LowDetailD.bmp │ │ │ │ │ │ ├── LowDetailF.bmp │ │ │ │ │ │ ├── LowDetailU.bmp │ │ │ │ │ │ ├── MainAppBackground.bmp │ │ │ │ │ │ ├── MediumDetailD.bmp │ │ │ │ │ │ ├── MediumDetailF.bmp │ │ │ │ │ │ ├── MediumDetailU.bmp │ │ │ │ │ │ ├── NextD.bmp │ │ │ │ │ │ ├── NextF.bmp │ │ │ │ │ │ ├── NextU.bmp │ │ │ │ │ │ ├── NextX.bmp │ │ │ │ │ │ ├── OKD.bmp │ │ │ │ │ │ ├── OKU.bmp │ │ │ │ │ │ ├── OkF.bmp │ │ │ │ │ │ ├── OptionsBackground.bmp │ │ │ │ │ │ ├── OptionsF.bmp │ │ │ │ │ │ ├── OptionsX.bmp │ │ │ │ │ │ ├── PlayD.bmp │ │ │ │ │ │ ├── PlayF.bmp │ │ │ │ │ │ ├── PlayU.bmp │ │ │ │ │ │ ├── PreviousD.bmp │ │ │ │ │ │ ├── PreviousF.bmp │ │ │ │ │ │ ├── PreviousU.bmp │ │ │ │ │ │ ├── PreviousX.bmp │ │ │ │ │ │ ├── Publisher1WebD.bmp │ │ │ │ │ │ ├── Publisher1WebF.bmp │ │ │ │ │ │ ├── Publisher1WebU.bmp │ │ │ │ │ │ ├── Publisher2WebD.bmp │ │ │ │ │ │ ├── Publisher2WebF.bmp │ │ │ │ │ │ ├── Publisher2WebU.bmp │ │ │ │ │ │ ├── QuitD.bmp │ │ │ │ │ │ ├── QuitF.bmp │ │ │ │ │ │ ├── QuitU.bmp │ │ │ │ │ │ ├── ServerD.bmp │ │ │ │ │ │ ├── ServerF.bmp │ │ │ │ │ │ ├── ServerU.bmp │ │ │ │ │ │ ├── ServerX.bmp │ │ │ │ │ │ ├── UninstallD.bmp │ │ │ │ │ │ ├── UninstallF.bmp │ │ │ │ │ │ ├── UninstallU.bmp │ │ │ │ │ │ ├── UninstallX.bmp │ │ │ │ │ │ ├── optionsd.bmp │ │ │ │ │ │ └── optionsu.bmp │ │ │ │ ├── ES │ │ │ │ │ ├── Launcher.rc │ │ │ │ │ └── bmp │ │ │ │ │ │ ├── BackD.bmp │ │ │ │ │ │ ├── BackF.bmp │ │ │ │ │ │ ├── BackU.bmp │ │ │ │ │ │ ├── CancelD.bmp │ │ │ │ │ │ ├── CancelF.bmp │ │ │ │ │ │ ├── CancelU.bmp │ │ │ │ │ │ ├── Company1WebD.bmp │ │ │ │ │ │ ├── Company1WebF.bmp │ │ │ │ │ │ ├── Company1WebU.bmp │ │ │ │ │ │ ├── Company2WebD.bmp │ │ │ │ │ │ ├── Company2WebF.bmp │ │ │ │ │ │ ├── Company2WebU.bmp │ │ │ │ │ │ ├── CustomBackground.bmp │ │ │ │ │ │ ├── CustomD.bmp │ │ │ │ │ │ ├── CustomF.bmp │ │ │ │ │ │ ├── CustomU.bmp │ │ │ │ │ │ ├── CustomX.bmp │ │ │ │ │ │ ├── DemoMainAppBackground.bmp │ │ │ │ │ │ ├── DetailSettingsBackground.bmp │ │ │ │ │ │ ├── DisplayBackground.bmp │ │ │ │ │ │ ├── DisplayD.bmp │ │ │ │ │ │ ├── DisplayF.bmp │ │ │ │ │ │ ├── DisplayU.bmp │ │ │ │ │ │ ├── DisplayX.bmp │ │ │ │ │ │ ├── HelpD.bmp │ │ │ │ │ │ ├── HelpF.bmp │ │ │ │ │ │ ├── HelpU.bmp │ │ │ │ │ │ ├── HighDetailD.bmp │ │ │ │ │ │ ├── HighDetailF.bmp │ │ │ │ │ │ ├── HighDetailU.bmp │ │ │ │ │ │ ├── InstallD.bmp │ │ │ │ │ │ ├── InstallF.bmp │ │ │ │ │ │ ├── InstallU.bmp │ │ │ │ │ │ ├── LowDetailD.bmp │ │ │ │ │ │ ├── LowDetailF.bmp │ │ │ │ │ │ ├── LowDetailU.bmp │ │ │ │ │ │ ├── MainAppBackground.bmp │ │ │ │ │ │ ├── MediumDetailD.bmp │ │ │ │ │ │ ├── MediumDetailF.bmp │ │ │ │ │ │ ├── MediumDetailU.bmp │ │ │ │ │ │ ├── NextD.bmp │ │ │ │ │ │ ├── NextF.bmp │ │ │ │ │ │ ├── NextU.bmp │ │ │ │ │ │ ├── NextX.bmp │ │ │ │ │ │ ├── OKD.bmp │ │ │ │ │ │ ├── OKU.bmp │ │ │ │ │ │ ├── OkF.bmp │ │ │ │ │ │ ├── OptionsBackground.bmp │ │ │ │ │ │ ├── OptionsF.bmp │ │ │ │ │ │ ├── OptionsX.bmp │ │ │ │ │ │ ├── PlayD.bmp │ │ │ │ │ │ ├── PlayF.bmp │ │ │ │ │ │ ├── PlayU.bmp │ │ │ │ │ │ ├── PreviousD.bmp │ │ │ │ │ │ ├── PreviousF.bmp │ │ │ │ │ │ ├── PreviousU.bmp │ │ │ │ │ │ ├── PreviousX.bmp │ │ │ │ │ │ ├── Publisher1WebD.bmp │ │ │ │ │ │ ├── Publisher1WebF.bmp │ │ │ │ │ │ ├── Publisher1WebU.bmp │ │ │ │ │ │ ├── Publisher2WebD.bmp │ │ │ │ │ │ ├── Publisher2WebF.bmp │ │ │ │ │ │ ├── Publisher2WebU.bmp │ │ │ │ │ │ ├── QuitD.bmp │ │ │ │ │ │ ├── QuitF.bmp │ │ │ │ │ │ ├── QuitU.bmp │ │ │ │ │ │ ├── ServerD.bmp │ │ │ │ │ │ ├── ServerF.bmp │ │ │ │ │ │ ├── ServerU.bmp │ │ │ │ │ │ ├── ServerX.bmp │ │ │ │ │ │ ├── UninstallD.bmp │ │ │ │ │ │ ├── UninstallF.bmp │ │ │ │ │ │ ├── UninstallU.bmp │ │ │ │ │ │ ├── UninstallX.bmp │ │ │ │ │ │ ├── optionsd.bmp │ │ │ │ │ │ └── optionsu.bmp │ │ │ │ ├── FR │ │ │ │ │ ├── Launcher.rc │ │ │ │ │ └── bmp │ │ │ │ │ │ ├── BackD.bmp │ │ │ │ │ │ ├── BackF.bmp │ │ │ │ │ │ ├── BackU.bmp │ │ │ │ │ │ ├── CancelD.bmp │ │ │ │ │ │ ├── CancelF.bmp │ │ │ │ │ │ ├── CancelU.bmp │ │ │ │ │ │ ├── Company1WebD.bmp │ │ │ │ │ │ ├── Company1WebF.bmp │ │ │ │ │ │ ├── Company1WebU.bmp │ │ │ │ │ │ ├── Company2WebD.bmp │ │ │ │ │ │ ├── Company2WebF.bmp │ │ │ │ │ │ ├── Company2WebU.bmp │ │ │ │ │ │ ├── CustomBackground.bmp │ │ │ │ │ │ ├── CustomD.bmp │ │ │ │ │ │ ├── CustomF.bmp │ │ │ │ │ │ ├── CustomU.bmp │ │ │ │ │ │ ├── CustomX.bmp │ │ │ │ │ │ ├── DemoMainAppBackground.bmp │ │ │ │ │ │ ├── DetailSettingsBackground.bmp │ │ │ │ │ │ ├── DisplayBackground.bmp │ │ │ │ │ │ ├── DisplayD.bmp │ │ │ │ │ │ ├── DisplayF.bmp │ │ │ │ │ │ ├── DisplayU.bmp │ │ │ │ │ │ ├── DisplayX.bmp │ │ │ │ │ │ ├── HelpD.bmp │ │ │ │ │ │ ├── HelpF.bmp │ │ │ │ │ │ ├── HelpU.bmp │ │ │ │ │ │ ├── HighDetailD.bmp │ │ │ │ │ │ ├── HighDetailF.bmp │ │ │ │ │ │ ├── HighDetailU.bmp │ │ │ │ │ │ ├── InstallD.bmp │ │ │ │ │ │ ├── InstallF.bmp │ │ │ │ │ │ ├── InstallU.bmp │ │ │ │ │ │ ├── LowDetailD.bmp │ │ │ │ │ │ ├── LowDetailF.bmp │ │ │ │ │ │ ├── LowDetailU.bmp │ │ │ │ │ │ ├── MainAppBackground.bmp │ │ │ │ │ │ ├── MediumDetailD.bmp │ │ │ │ │ │ ├── MediumDetailF.bmp │ │ │ │ │ │ ├── MediumDetailU.bmp │ │ │ │ │ │ ├── NextD.bmp │ │ │ │ │ │ ├── NextF.bmp │ │ │ │ │ │ ├── NextU.bmp │ │ │ │ │ │ ├── NextX.bmp │ │ │ │ │ │ ├── OKD.bmp │ │ │ │ │ │ ├── OKU.bmp │ │ │ │ │ │ ├── OkF.bmp │ │ │ │ │ │ ├── OptionsBackground.bmp │ │ │ │ │ │ ├── OptionsF.bmp │ │ │ │ │ │ ├── OptionsX.bmp │ │ │ │ │ │ ├── PlayD.bmp │ │ │ │ │ │ ├── PlayF.bmp │ │ │ │ │ │ ├── PlayU.bmp │ │ │ │ │ │ ├── PreviousD.bmp │ │ │ │ │ │ ├── PreviousF.bmp │ │ │ │ │ │ ├── PreviousU.bmp │ │ │ │ │ │ ├── PreviousX.bmp │ │ │ │ │ │ ├── Publisher1WebD.bmp │ │ │ │ │ │ ├── Publisher1WebF.bmp │ │ │ │ │ │ ├── Publisher1WebU.bmp │ │ │ │ │ │ ├── Publisher2WebD.bmp │ │ │ │ │ │ ├── Publisher2WebF.bmp │ │ │ │ │ │ ├── Publisher2WebU.bmp │ │ │ │ │ │ ├── QuitD.bmp │ │ │ │ │ │ ├── QuitF.bmp │ │ │ │ │ │ ├── QuitU.bmp │ │ │ │ │ │ ├── ServerD.bmp │ │ │ │ │ │ ├── ServerF.bmp │ │ │ │ │ │ ├── ServerU.bmp │ │ │ │ │ │ ├── ServerX.bmp │ │ │ │ │ │ ├── UninstallD.bmp │ │ │ │ │ │ ├── UninstallF.bmp │ │ │ │ │ │ ├── UninstallU.bmp │ │ │ │ │ │ ├── UninstallX.bmp │ │ │ │ │ │ ├── optionsd.bmp │ │ │ │ │ │ └── optionsu.bmp │ │ │ │ └── IT │ │ │ │ │ ├── Launcher.rc │ │ │ │ │ └── bmp │ │ │ │ │ ├── BackD.bmp │ │ │ │ │ ├── BackF.bmp │ │ │ │ │ ├── BackU.bmp │ │ │ │ │ ├── CancelD.bmp │ │ │ │ │ ├── CancelF.bmp │ │ │ │ │ ├── CancelU.bmp │ │ │ │ │ ├── Company1WebD.bmp │ │ │ │ │ ├── Company1WebF.bmp │ │ │ │ │ ├── Company1WebU.bmp │ │ │ │ │ ├── Company2WebD.bmp │ │ │ │ │ ├── Company2WebF.bmp │ │ │ │ │ ├── Company2WebU.bmp │ │ │ │ │ ├── CustomBackground.bmp │ │ │ │ │ ├── CustomD.bmp │ │ │ │ │ ├── CustomF.bmp │ │ │ │ │ ├── CustomU.bmp │ │ │ │ │ ├── CustomX.bmp │ │ │ │ │ ├── DemoMainAppBackground.bmp │ │ │ │ │ ├── DetailSettingsBackground.bmp │ │ │ │ │ ├── DisplayBackground.bmp │ │ │ │ │ ├── DisplayD.bmp │ │ │ │ │ ├── DisplayF.bmp │ │ │ │ │ ├── DisplayU.bmp │ │ │ │ │ ├── DisplayX.bmp │ │ │ │ │ ├── HelpD.bmp │ │ │ │ │ ├── HelpF.bmp │ │ │ │ │ ├── HelpU.bmp │ │ │ │ │ ├── HighDetailD.bmp │ │ │ │ │ ├── HighDetailF.bmp │ │ │ │ │ ├── HighDetailU.bmp │ │ │ │ │ ├── InstallD.bmp │ │ │ │ │ ├── InstallF.bmp │ │ │ │ │ ├── InstallU.bmp │ │ │ │ │ ├── LowDetailD.bmp │ │ │ │ │ ├── LowDetailF.bmp │ │ │ │ │ ├── LowDetailU.bmp │ │ │ │ │ ├── MainAppBackground.bmp │ │ │ │ │ ├── MediumDetailD.bmp │ │ │ │ │ ├── MediumDetailF.bmp │ │ │ │ │ ├── MediumDetailU.bmp │ │ │ │ │ ├── NextD.bmp │ │ │ │ │ ├── NextF.bmp │ │ │ │ │ ├── NextU.bmp │ │ │ │ │ ├── NextX.bmp │ │ │ │ │ ├── OKD.bmp │ │ │ │ │ ├── OKU.bmp │ │ │ │ │ ├── OkF.bmp │ │ │ │ │ ├── OptionsBackground.bmp │ │ │ │ │ ├── OptionsF.bmp │ │ │ │ │ ├── OptionsX.bmp │ │ │ │ │ ├── PlayD.bmp │ │ │ │ │ ├── PlayF.bmp │ │ │ │ │ ├── PlayU.bmp │ │ │ │ │ ├── PreviousD.bmp │ │ │ │ │ ├── PreviousF.bmp │ │ │ │ │ ├── PreviousU.bmp │ │ │ │ │ ├── PreviousX.bmp │ │ │ │ │ ├── Publisher1WebD.bmp │ │ │ │ │ ├── Publisher1WebF.bmp │ │ │ │ │ ├── Publisher1WebU.bmp │ │ │ │ │ ├── Publisher2WebD.bmp │ │ │ │ │ ├── Publisher2WebF.bmp │ │ │ │ │ ├── Publisher2WebU.bmp │ │ │ │ │ ├── QuitD.bmp │ │ │ │ │ ├── QuitF.bmp │ │ │ │ │ ├── QuitU.bmp │ │ │ │ │ ├── ServerD.bmp │ │ │ │ │ ├── ServerF.bmp │ │ │ │ │ ├── ServerU.bmp │ │ │ │ │ ├── ServerX.bmp │ │ │ │ │ ├── UninstallD.bmp │ │ │ │ │ ├── UninstallF.bmp │ │ │ │ │ ├── UninstallU.bmp │ │ │ │ │ ├── UninstallX.bmp │ │ │ │ │ ├── optionsd.bmp │ │ │ │ │ └── optionsu.bmp │ │ │ ├── Launcher.ico │ │ │ ├── Launcher.rc2 │ │ │ ├── WebHand.cur │ │ │ ├── bmp │ │ │ │ ├── BoxBackground.bmp │ │ │ │ ├── CheckBoxC.bmp │ │ │ │ ├── CheckBoxF.bmp │ │ │ │ ├── CheckBoxN.bmp │ │ │ │ ├── Error.bmp │ │ │ │ ├── Information.bmp │ │ │ │ ├── MinimizeD.bmp │ │ │ │ ├── MinimizeU.bmp │ │ │ │ ├── MultiplayerBackground.bmp │ │ │ │ ├── Warning.bmp │ │ │ │ ├── closed.bmp │ │ │ │ └── closeu.bmp │ │ │ └── snd │ │ │ │ ├── Click.wav │ │ │ │ ├── Intro.wav │ │ │ │ ├── Select.wav │ │ │ │ ├── TypeBack.wav │ │ │ │ ├── buttondown.wav │ │ │ │ ├── type1.WAV │ │ │ │ ├── type2.WAV │ │ │ │ └── type3.WAV │ │ └── resource.h │ ├── TextCheckBox.cpp │ ├── TextCheckBox.h │ ├── Utils.cpp │ └── Utils.h ├── Libs │ ├── LTGUIMgr │ │ ├── ltguibutton.cpp │ │ ├── ltguibutton.h │ │ ├── ltguicolumnctrl.cpp │ │ ├── ltguicolumnctrl.h │ │ ├── ltguicommandhandler.cpp │ │ ├── ltguicommandhandler.h │ │ ├── ltguictrl.cpp │ │ ├── ltguictrl.h │ │ ├── ltguicyclectrl.cpp │ │ ├── ltguicyclectrl.h │ │ ├── ltguieditctrl.cpp │ │ ├── ltguieditctrl.h │ │ ├── ltguiframe.cpp │ │ ├── ltguiframe.h │ │ ├── ltguilargetext.cpp │ │ ├── ltguilargetext.h │ │ ├── ltguilistctrl.cpp │ │ ├── ltguilistctrl.h │ │ ├── ltguimgr.h │ │ ├── ltguimgr60.dsp │ │ ├── ltguimgr60.vcxproj │ │ ├── ltguimgr60.vcxproj.filters │ │ ├── ltguimgr60.vcxproj.user │ │ ├── ltguislider.cpp │ │ ├── ltguislider.h │ │ ├── ltguitextitemctrl.cpp │ │ ├── ltguitextitemctrl.h │ │ ├── ltguitoggle.cpp │ │ ├── ltguitoggle.h │ │ ├── ltguiwindow.cpp │ │ ├── ltguiwindow.h │ │ ├── ltquaduvutils.h │ │ └── vkdefs.h │ └── ServerDir │ │ ├── IServerDir.h │ │ ├── IServerDir_Titan.h │ │ ├── debug │ │ └── serverdir.lib │ │ ├── final │ │ └── serverdir.lib │ │ └── release │ │ └── serverdir.lib ├── ObjectDLL │ ├── ObjectShared │ │ ├── AI.cpp │ │ ├── AI.h │ │ ├── AIAssert.cpp │ │ ├── AIAssert.h │ │ ├── AIBrain.cpp │ │ ├── AIBrain.h │ │ ├── AIButeMgr.cpp │ │ ├── AIButeMgr.h │ │ ├── AICentralKnowledgeMgr.cpp │ │ ├── AICentralKnowledgeMgr.h │ │ ├── AIClassFactory.cpp │ │ ├── AIClassFactory.h │ │ ├── AIDataTypeEnums.h │ │ ├── AIGoalAbstract.cpp │ │ ├── AIGoalAbstract.h │ │ ├── AIGoalAbstractSearch.cpp │ │ ├── AIGoalAbstractSearch.h │ │ ├── AIGoalAbstractStimulated.cpp │ │ ├── AIGoalAbstractStimulated.h │ │ ├── AIGoalAbstractTargeted.cpp │ │ ├── AIGoalAbstractTargeted.h │ │ ├── AIGoalAbstractUseObject.cpp │ │ ├── AIGoalAbstractUseObject.h │ │ ├── AIGoalAlarm.cpp │ │ ├── AIGoalAlarm.h │ │ ├── AIGoalAnimate.cpp │ │ ├── AIGoalAnimate.h │ │ ├── AIGoalApprehend.cpp │ │ ├── AIGoalApprehend.h │ │ ├── AIGoalAssassinate.cpp │ │ ├── AIGoalAssassinate.h │ │ ├── AIGoalAttack.cpp │ │ ├── AIGoalAttack.h │ │ ├── AIGoalAttackFromCover.cpp │ │ ├── AIGoalAttackFromCover.h │ │ ├── AIGoalAttackFromRandomVantage.h │ │ ├── AIGoalAttackFromRoofVantage.h │ │ ├── AIGoalAttackFromVantage.h │ │ ├── AIGoalAttackFromView.cpp │ │ ├── AIGoalAttackFromView.h │ │ ├── AIGoalAttackMelee.cpp │ │ ├── AIGoalAttackMelee.h │ │ ├── AIGoalAttackProne.cpp │ │ ├── AIGoalAttackProne.h │ │ ├── AIGoalAttackProp.cpp │ │ ├── AIGoalAttackProp.h │ │ ├── AIGoalAttackRanged.cpp │ │ ├── AIGoalAttackRanged.h │ │ ├── AIGoalAttackRangedDynamic.cpp │ │ ├── AIGoalAttackRangedDynamic.h │ │ ├── AIGoalAttackfromRandomVantage.cpp │ │ ├── AIGoalAttackfromRoofVantage.cpp │ │ ├── AIGoalAttackfromVantage.cpp │ │ ├── AIGoalButeMgr.cpp │ │ ├── AIGoalButeMgr.h │ │ ├── AIGoalCatch.cpp │ │ ├── AIGoalCatch.h │ │ ├── AIGoalCharge.cpp │ │ ├── AIGoalCharge.h │ │ ├── AIGoalChase.cpp │ │ ├── AIGoalChase.h │ │ ├── AIGoalCheckBody.cpp │ │ ├── AIGoalCheckBody.h │ │ ├── AIGoalCover.cpp │ │ ├── AIGoalCover.h │ │ ├── AIGoalDeflect.cpp │ │ ├── AIGoalDeflect.h │ │ ├── AIGoalDisappearReappear.cpp │ │ ├── AIGoalDisappearReappear.h │ │ ├── AIGoalDisappearReappearEvasive.cpp │ │ ├── AIGoalDisappearReappearEvasive.h │ │ ├── AIGoalDistress.cpp │ │ ├── AIGoalDistress.h │ │ ├── AIGoalDramaDeath.cpp │ │ ├── AIGoalDramaDeath.h │ │ ├── AIGoalDrawWeapon.cpp │ │ ├── AIGoalDrawWeapon.h │ │ ├── AIGoalExitLevel.cpp │ │ ├── AIGoalExitLevel.h │ │ ├── AIGoalFlee.cpp │ │ ├── AIGoalFlee.h │ │ ├── AIGoalFollow.cpp │ │ ├── AIGoalFollow.h │ │ ├── AIGoalFollowFootprint.cpp │ │ ├── AIGoalFollowFootprint.h │ │ ├── AIGoalGetBackup.cpp │ │ ├── AIGoalGetBackup.h │ │ ├── AIGoalGoto.cpp │ │ ├── AIGoalGoto.h │ │ ├── AIGoalGuard.cpp │ │ ├── AIGoalGuard.h │ │ ├── AIGoalHolsterWeapon.cpp │ │ ├── AIGoalHolsterWeapon.h │ │ ├── AIGoalInvestigate.cpp │ │ ├── AIGoalInvestigate.h │ │ ├── AIGoalLoveKitty.cpp │ │ ├── AIGoalLoveKitty.h │ │ ├── AIGoalLunge.cpp │ │ ├── AIGoalLunge.h │ │ ├── AIGoalMenace.cpp │ │ ├── AIGoalMenace.h │ │ ├── AIGoalMgr.cpp │ │ ├── AIGoalMgr.h │ │ ├── AIGoalMountedFlashlight.cpp │ │ ├── AIGoalMountedFlashlight.h │ │ ├── AIGoalObstruct.cpp │ │ ├── AIGoalObstruct.h │ │ ├── AIGoalPatrol.cpp │ │ ├── AIGoalPatrol.h │ │ ├── AIGoalProximityCommand.cpp │ │ ├── AIGoalProximityCommand.h │ │ ├── AIGoalPsychoChase.cpp │ │ ├── AIGoalPsychoChase.h │ │ ├── AIGoalReclassifyToEnemy.cpp │ │ ├── AIGoalReclassifyToEnemy.h │ │ ├── AIGoalRespondToAlarm.cpp │ │ ├── AIGoalRespondToAlarm.h │ │ ├── AIGoalRespondToBackup.cpp │ │ ├── AIGoalRespondToBackup.h │ │ ├── AIGoalResurrecting.cpp │ │ ├── AIGoalResurrecting.h │ │ ├── AIGoalRetreat.cpp │ │ ├── AIGoalRetreat.h │ │ ├── AIGoalSearch.cpp │ │ ├── AIGoalSearch.h │ │ ├── AIGoalSentryChallenge.cpp │ │ ├── AIGoalSentryChallenge.h │ │ ├── AIGoalSentryMark.cpp │ │ ├── AIGoalSentryMark.h │ │ ├── AIGoalSerumDeath.cpp │ │ ├── AIGoalSerumDeath.h │ │ ├── AIGoalSleep.cpp │ │ ├── AIGoalSleep.h │ │ ├── AIGoalSniper.cpp │ │ ├── AIGoalSniper.h │ │ ├── AIGoalSpecialDamage.cpp │ │ ├── AIGoalSpecialDamage.h │ │ ├── AIGoalTail.cpp │ │ ├── AIGoalTail.h │ │ ├── AIGoalTalk.cpp │ │ ├── AIGoalTalk.h │ │ ├── AIGoalTypeEnums.h │ │ ├── AIGoalWork.cpp │ │ ├── AIGoalWork.h │ │ ├── AIHuman.cpp │ │ ├── AIHuman.h │ │ ├── AIHumanState.cpp │ │ ├── AIHumanState.h │ │ ├── AIHumanStateApprehend.cpp │ │ ├── AIHumanStateApprehend.h │ │ ├── AIHumanStateAttackMove.cpp │ │ ├── AIHumanStateAttackMove.h │ │ ├── AIHumanStateAttackProne.cpp │ │ ├── AIHumanStateAttackProne.h │ │ ├── AIHumanStateCatch.cpp │ │ ├── AIHumanStateCatch.h │ │ ├── AIHumanStateDeflect.cpp │ │ ├── AIHumanStateDeflect.h │ │ ├── AIHumanStateDisappearReappear.cpp │ │ ├── AIHumanStateDisappearReappear.h │ │ ├── AIHumanStateLaunch.cpp │ │ ├── AIHumanStateLaunch.h │ │ ├── AIHumanStateObstruct.cpp │ │ ├── AIHumanStateObstruct.h │ │ ├── AIHumanStateResurrecting.cpp │ │ ├── AIHumanStateResurrecting.h │ │ ├── AIHumanStateSentryChallenge.cpp │ │ ├── AIHumanStateSentryChallenge.h │ │ ├── AIHumanStateSniper.cpp │ │ ├── AIHumanStateSniper.h │ │ ├── AIHumanStrategy.cpp │ │ ├── AIHumanStrategy.h │ │ ├── AIHumanStrategyShootStream.cpp │ │ ├── AIHumanStrategyShootStream.h │ │ ├── AIHumanStrategyToggleLights.cpp │ │ ├── AIHumanStrategyToggleLights.h │ │ ├── AIInformationVolumeMgr.cpp │ │ ├── AIInformationVolumeMgr.h │ │ ├── AIMovement.cpp │ │ ├── AIMovement.h │ │ ├── AIMovementModifier.cpp │ │ ├── AIMovementModifier.h │ │ ├── AINode.cpp │ │ ├── AINode.h │ │ ├── AINodeDisturbance.cpp │ │ ├── AINodeDisturbance.h │ │ ├── AINodeGuard.cpp │ │ ├── AINodeGuard.h │ │ ├── AINodeMgr.cpp │ │ ├── AINodeMgr.h │ │ ├── AINodeSensing.cpp │ │ ├── AINodeSensing.h │ │ ├── AINodeTypeEnums.h │ │ ├── AIPath.cpp │ │ ├── AIPath.h │ │ ├── AIPathKnowledgeMgr.cpp │ │ ├── AIPathKnowledgeMgr.h │ │ ├── AIPathMgr.cpp │ │ ├── AIPathMgr.h │ │ ├── AIRegion.cpp │ │ ├── AIRegion.h │ │ ├── AIRegionMgr.cpp │ │ ├── AIRegionMgr.h │ │ ├── AISenseRecorderAbstract.cpp │ │ ├── AISenseRecorderAbstract.h │ │ ├── AISenseRecorderGame.cpp │ │ ├── AISenseRecorderGame.h │ │ ├── AISenseTypeEnums.h │ │ ├── AISensing.h │ │ ├── AISoundTypeEnums.h │ │ ├── AISounds.cpp │ │ ├── AISounds.h │ │ ├── AISpatialRepresentationMgr.cpp │ │ ├── AISpatialRepresentationMgr.h │ │ ├── AIState.cpp │ │ ├── AIState.h │ │ ├── AIStateTypeEnums.h │ │ ├── AIStimulusMgr.cpp │ │ ├── AIStimulusMgr.h │ │ ├── AIStimulusTypeEnums.h │ │ ├── AIStrategy.h │ │ ├── AIStrategyTypeEnums.h │ │ ├── AITarget.cpp │ │ ├── AITarget.h │ │ ├── AITypes.cpp │ │ ├── AITypes.h │ │ ├── AIUtils.cpp │ │ ├── AIUtils.h │ │ ├── AIVolume.cpp │ │ ├── AIVolume.h │ │ ├── AIVolumeMgr.cpp │ │ ├── AIVolumeMgr.h │ │ ├── AIVolumeNeighbor.cpp │ │ ├── AIVolumeNeighbor.h │ │ ├── AIVolumeTypeEnums.h │ │ ├── ActiveWorldModel.cpp │ │ ├── ActiveWorldModel.h │ │ ├── Alarm.cpp │ │ ├── Alarm.h │ │ ├── AmmoBox.cpp │ │ ├── AmmoBox.h │ │ ├── AnimationLex.cpp │ │ ├── AnimationLex.h │ │ ├── AnimationLex.l │ │ ├── AnimationLex.o │ │ ├── AnimationLexSymbols.h │ │ ├── AnimationMgr.cpp │ │ ├── AnimationMgr.h │ │ ├── AnimationMovement.h │ │ ├── AnimationMovementEnums.h │ │ ├── AnimationParse.cpp │ │ ├── AnimationParse.h │ │ ├── AnimationParse.o │ │ ├── AnimationParse.y │ │ ├── AnimationParser.cpp │ │ ├── AnimationParser.h │ │ ├── AnimationProp.h │ │ ├── AnimationPropEnums.h │ │ ├── AnimationPropGroupEnums.h │ │ ├── AnimationPropStrings.h │ │ ├── AnimationStd.h │ │ ├── AnimatorPlayer.cpp │ │ ├── AnimatorPlayer.h │ │ ├── Attachments.cpp │ │ ├── Attachments.h │ │ ├── BanIPMgr.cpp │ │ ├── BanIPMgr.h │ │ ├── Body.cpp │ │ ├── Body.h │ │ ├── BodyState.cpp │ │ ├── BodyState.h │ │ ├── Bombable.cpp │ │ ├── Bombable.h │ │ ├── Breakable.cpp │ │ ├── Breakable.h │ │ ├── ButeTools.cpp │ │ ├── ButeTools.h │ │ ├── CDynArray.h │ │ ├── CVarTrack.h │ │ ├── Camera.cpp │ │ ├── Camera.h │ │ ├── Character.cpp │ │ ├── Character.h │ │ ├── CharacterHitBox.cpp │ │ ├── CharacterHitBox.h │ │ ├── CharacterMgr.cpp │ │ ├── CharacterMgr.h │ │ ├── ClassHlp.but │ │ ├── ClientLightFX.cpp │ │ ├── ClientLightFX.h │ │ ├── ClientSFX.cpp │ │ ├── ClientSFX.h │ │ ├── ClientWeaponSFX.cpp │ │ ├── ClientWeaponSFX.h │ │ ├── CollectiveRelationMgr.cpp │ │ ├── CollectiveRelationMgr.h │ │ ├── CommandButeMgr.cpp │ │ ├── CommandButeMgr.h │ │ ├── CommandMgr.cpp │ │ ├── CommandMgr.h │ │ ├── CommandObject.cpp │ │ ├── CommandObject.h │ │ ├── Controller.cpp │ │ ├── Controller.h │ │ ├── CoopMissionMgr.cpp │ │ ├── CoopMissionMgr.h │ │ ├── DEditColors.h │ │ ├── DeathMatchMissionMgr.cpp │ │ ├── DeathMatchMissionMgr.h │ │ ├── DeathScene.cpp │ │ ├── DeathScene.h │ │ ├── DebrisFuncs.cpp │ │ ├── DebrisFuncs.h │ │ ├── DebugLineSystem.cpp │ │ ├── DebugLineSystem.h │ │ ├── DecisionObject.cpp │ │ ├── DecisionObject.h │ │ ├── Destructible.cpp │ │ ├── Destructible.h │ │ ├── DestructibleModel.cpp │ │ ├── DestructibleModel.h │ │ ├── Dialogue.cpp │ │ ├── Dialogue.h │ │ ├── DisplayMeter.cpp │ │ ├── DisplayMeter.h │ │ ├── DisplayTimer.cpp │ │ ├── DisplayTimer.h │ │ ├── DoomsDayDevice.cpp │ │ ├── DoomsDayDevice.h │ │ ├── DoomsDayMissionMgr.cpp │ │ ├── DoomsDayMissionMgr.h │ │ ├── DoomsDayPiece.cpp │ │ ├── DoomsDayPiece.h │ │ ├── Door.cpp │ │ ├── Door.h │ │ ├── DoorKnob.cpp │ │ ├── DoorKnob.h │ │ ├── DynamicOccluderVolume.cpp │ │ ├── DynamicOccluderVolume.h │ │ ├── Editable.cpp │ │ ├── Editable.h │ │ ├── EventCounter.cpp │ │ ├── EventCounter.h │ │ ├── ExitTrigger.cpp │ │ ├── ExitTrigger.h │ │ ├── Explosion.cpp │ │ ├── Explosion.h │ │ ├── Fire.cpp │ │ ├── Fire.h │ │ ├── GadgetTarget.cpp │ │ ├── GadgetTarget.h │ │ ├── GadgetTargetMgr.cpp │ │ ├── GadgetTargetMgr.h │ │ ├── GameBase.cpp │ │ ├── GameBase.h │ │ ├── GameBaseLite.cpp │ │ ├── GameBaseLite.h │ │ ├── GameServerShell.cpp │ │ ├── GameServerShell.h │ │ ├── GameStartPoint.cpp │ │ ├── GameStartPoint.h │ │ ├── GearItems.cpp │ │ ├── GearItems.h │ │ ├── GeneralInventory.h │ │ ├── GlobalServerMgr.cpp │ │ ├── GlobalServerMgr.h │ │ ├── Group.cpp │ │ ├── Group.h │ │ ├── HHWeaponModel.cpp │ │ ├── HHWeaponModel.h │ │ ├── IHitBoxUser.h │ │ ├── IntelMgr.cpp │ │ ├── IntelMgr.h │ │ ├── Intelligence.cpp │ │ ├── Intelligence.h │ │ ├── InventoryButeMgr.cpp │ │ ├── InventoryButeMgr.h │ │ ├── JumpVolume.cpp │ │ ├── JumpVolume.h │ │ ├── Key.cpp │ │ ├── Key.h │ │ ├── KeyData.cpp │ │ ├── KeyData.h │ │ ├── KeyFramer.cpp │ │ ├── KeyFramer.h │ │ ├── KeyItem.cpp │ │ ├── KeyItem.h │ │ ├── KeyPad.cpp │ │ ├── KeyPad.h │ │ ├── LaserTrigger.cpp │ │ ├── LaserTrigger.h │ │ ├── LightGroup.cpp │ │ ├── LightGroup.h │ │ ├── Lightning.cpp │ │ ├── Lightning.h │ │ ├── LiteObjectMgr.cpp │ │ ├── LiteObjectMgr.h │ │ ├── Lock.cpp │ │ ├── Lock.h │ │ ├── Mine.cpp │ │ ├── Mine.h │ │ ├── ModItem.cpp │ │ ├── ModItem.h │ │ ├── MusicMgr.cpp │ │ ├── MusicMgr.h │ │ ├── NoPlayerTrigger.cpp │ │ ├── NoPlayerTrigger.h │ │ ├── NodeLine.cpp │ │ ├── NodeLine.h │ │ ├── ObjectMsgs.h │ │ ├── ObjectRelationMgr.cpp │ │ ├── ObjectRelationMgr.h │ │ ├── ObjectRemover.cpp │ │ ├── ObjectRemover.h │ │ ├── ObjectShared.dsp │ │ ├── ObjectShared.vcxproj │ │ ├── ObjectShared.vcxproj.filters │ │ ├── ObjectShared.vcxproj.user │ │ ├── ObjectTemplateMgr.cpp │ │ ├── ObjectTemplateMgr.h │ │ ├── ObjectiveSprite.cpp │ │ ├── ObjectiveSprite.h │ │ ├── PSets.h │ │ ├── ParticleSystem.cpp │ │ ├── ParticleSystem.h │ │ ├── PickupItem.cpp │ │ ├── PickupItem.h │ │ ├── PlayerButes.h │ │ ├── PlayerLure.cpp │ │ ├── PlayerLure.h │ │ ├── PlayerObj.cpp │ │ ├── PlayerObj.h │ │ ├── PlayerTracker.cpp │ │ ├── PlayerTracker.h │ │ ├── PlayerTrigger.cpp │ │ ├── PlayerTrigger.h │ │ ├── PlayerVehicle.cpp │ │ ├── PlayerVehicle.h │ │ ├── Point.cpp │ │ ├── Point.h │ │ ├── PolyGrid.cpp │ │ ├── PolyGrid.h │ │ ├── PolyGridModifier.cpp │ │ ├── PolyGridModifier.h │ │ ├── PowerArmor.cpp │ │ ├── PowerArmor.h │ │ ├── Projectile.cpp │ │ ├── Projectile.h │ │ ├── ProjectileTypes.cpp │ │ ├── ProjectileTypes.h │ │ ├── Prop.cpp │ │ ├── Prop.h │ │ ├── PropType.cpp │ │ ├── PropType.h │ │ ├── PropTypeMgr.cpp │ │ ├── PropTypeMgr.h │ │ ├── RadarObject.cpp │ │ ├── RadarObject.h │ │ ├── RandomSpawner.cpp │ │ ├── RandomSpawner.h │ │ ├── RelationButeMgr.cpp │ │ ├── RelationButeMgr.h │ │ ├── RelationChangeObserver.h │ │ ├── RelationMgr.cpp │ │ ├── RelationMgr.h │ │ ├── RotatingDoor.cpp │ │ ├── RotatingDoor.h │ │ ├── RotatingSwitch.cpp │ │ ├── RotatingSwitch.h │ │ ├── RotatingWorldModel.cpp │ │ ├── RotatingWorldModel.h │ │ ├── SFXFuncs.cpp │ │ ├── SFXFuncs.h │ │ ├── ScaleSprite.cpp │ │ ├── ScaleSprite.h │ │ ├── Scanner.cpp │ │ ├── Scanner.h │ │ ├── ScatterVolume.cpp │ │ ├── ScatterVolume.h │ │ ├── ScmdServer.cpp │ │ ├── ScmdServer.h │ │ ├── ScreenShake.cpp │ │ ├── ScreenShake.h │ │ ├── SearchLight.cpp │ │ ├── SearchLight.h │ │ ├── SearchProp.cpp │ │ ├── SearchProp.h │ │ ├── Searchable.cpp │ │ ├── Searchable.h │ │ ├── SecurityCamera.cpp │ │ ├── SecurityCamera.h │ │ ├── ServerAssetMgr.cpp │ │ ├── ServerAssetMgr.h │ │ ├── ServerButeMgr.cpp │ │ ├── ServerButeMgr.h │ │ ├── ServerMark.cpp │ │ ├── ServerMark.h │ │ ├── ServerMissionMgr.cpp │ │ ├── ServerMissionMgr.h │ │ ├── ServerMissionSettings.h │ │ ├── ServerRes.h │ │ ├── ServerSaveLoadMgr.cpp │ │ ├── ServerSaveLoadMgr.h │ │ ├── ServerSoundFX.cpp │ │ ├── ServerSoundFX.h │ │ ├── ServerSoundMgr.cpp │ │ ├── ServerSoundMgr.h │ │ ├── ServerSpecialFX.cpp │ │ ├── ServerSpecialFX.h │ │ ├── ServerTrackedNodeContext.cpp │ │ ├── ServerTrackedNodeContext.h │ │ ├── ServerTrackedNodeMgr.cpp │ │ ├── ServerTrackedNodeMgr.h │ │ ├── ServerUtilities.cpp │ │ ├── ServerUtilities.h │ │ ├── SinglePlayerMissionMgr.cpp │ │ ├── SinglePlayerMissionMgr.h │ │ ├── Skills.cpp │ │ ├── Skills.h │ │ ├── SlidingDoor.cpp │ │ ├── SlidingDoor.h │ │ ├── SlidingSwitch.cpp │ │ ├── SlidingSwitch.h │ │ ├── SlidingWorldModel.cpp │ │ ├── SlidingWorldModel.h │ │ ├── SnowVolume.cpp │ │ ├── SnowVolume.h │ │ ├── SoundButeFX.cpp │ │ ├── SoundButeFX.h │ │ ├── Sparam.cpp │ │ ├── Sparam.h │ │ ├── Spawner.cpp │ │ ├── Spawner.h │ │ ├── Speaker.cpp │ │ ├── Speaker.h │ │ ├── SpinningWorldModel.cpp │ │ ├── SpinningWorldModel.h │ │ ├── Sprinkles.cpp │ │ ├── Sprinkles.h │ │ ├── StartupCommand.cpp │ │ ├── StartupCommand.h │ │ ├── Stdafx.cpp │ │ ├── Stdafx.h │ │ ├── Steam.cpp │ │ ├── Steam.h │ │ ├── Switch.cpp │ │ ├── Switch.h │ │ ├── TeamDeathMatchMissionMgr.cpp │ │ ├── TeamDeathMatchMissionMgr.h │ │ ├── TeleportPoint.cpp │ │ ├── TeleportPoint.h │ │ ├── TextureFX.cpp │ │ ├── TextureFX.h │ │ ├── TransitionAggregate.cpp │ │ ├── TransitionAggregate.h │ │ ├── TransitionArea.cpp │ │ ├── TransitionArea.h │ │ ├── TransitionMgr.cpp │ │ ├── TransitionMgr.h │ │ ├── Trigger.cpp │ │ ├── Trigger.h │ │ ├── VolumeBrush.cpp │ │ ├── VolumeBrush.h │ │ ├── VolumeBrushTypes.cpp │ │ ├── VolumeBrushTypes.h │ │ ├── VolumeEffect.cpp │ │ ├── VolumeEffect.h │ │ ├── Weapon.cpp │ │ ├── Weapon.h │ │ ├── WeaponFireInfo.h │ │ ├── WeaponItems.cpp │ │ ├── WeaponItems.h │ │ ├── Weapons.cpp │ │ ├── Weapons.h │ │ ├── WorldModel.cpp │ │ ├── WorldModel.h │ │ ├── WorldModelDebris.cpp │ │ ├── WorldModelDebris.h │ │ ├── WorldProperties.cpp │ │ ├── WorldProperties.h │ │ ├── bison.hairy │ │ └── bison.simple │ └── TO2 │ │ ├── GlobalsInit.cpp │ │ ├── Object.dsp │ │ ├── Object.vcxproj │ │ ├── Object.vcxproj.filters │ │ ├── Object.vcxproj.user │ │ ├── Stdafx.cpp │ │ ├── Stdafx.h │ │ ├── TO2GameServerShell.cpp │ │ └── TO2GameServerShell.h ├── ServerApp │ ├── ScmdConsoleDriver_ServerApp.cpp │ ├── ScmdConsoleDriver_ServerApp.h │ ├── SelectConfigDlg.cpp │ ├── SelectConfigDlg.h │ ├── ServerApp.cpp │ ├── ServerApp.dsp │ ├── ServerApp.h │ ├── ServerApp.vcxproj │ ├── ServerApp.vcxproj.filters │ ├── ServerApp.vcxproj.user │ ├── ServerDlg.cpp │ ├── ServerDlg.h │ ├── Splash.cpp │ ├── Splash.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── res │ │ ├── Lang │ │ │ ├── DE │ │ │ │ ├── ServerApp.rc │ │ │ │ └── splash.bmp │ │ │ ├── EN │ │ │ │ ├── ServerApp.rc │ │ │ │ ├── splash.bmp │ │ │ │ └── splash.psd │ │ │ ├── ES │ │ │ │ ├── ServerApp.rc │ │ │ │ └── splash.bmp │ │ │ ├── FR │ │ │ │ ├── ServerApp.rc │ │ │ │ └── splash.bmp │ │ │ └── IT │ │ │ │ ├── ServerApp.rc │ │ │ │ └── splash.bmp │ │ ├── ServerApp.ico │ │ ├── ServerApp.rc2 │ │ └── selected.ico │ └── resource.h ├── ServerRes │ └── TO2 │ │ ├── MAIN.CPP │ │ ├── ServerRes.dsp │ │ ├── ServerRes.h │ │ ├── ServerRes.rc │ │ ├── ServerRes.vcxproj │ │ └── ServerRes.vcxproj.user ├── Shared │ ├── ActivateTypeMgr.cpp │ ├── ActivateTypeMgr.h │ ├── ActivationData.h │ ├── Animator.cpp │ ├── Animator.h │ ├── AssertMgr.cpp │ ├── AssertMgr.h │ ├── AttachButeMgr.cpp │ ├── AttachButeMgr.h │ ├── AutoMessage.h │ ├── BankedList.h │ ├── BankedList_impl.h │ ├── BaseFx.h │ ├── ButeListReader.cpp │ ├── ButeListReader.h │ ├── CRC32.cpp │ ├── CRC32.h │ ├── CharacterAlignment.cpp │ ├── CharacterAlignment.h │ ├── CheatDefs.h │ ├── ClientServerShared.cpp │ ├── ClientServerShared.h │ ├── CommandIDs.h │ ├── CommonUtilities.cpp │ ├── CommonUtilities.h │ ├── ContainerCodes.h │ ├── Creator.h │ ├── DamageTypes.cpp │ ├── DamageTypes.h │ ├── DamageTypesEnum.h │ ├── DebrisMgr.cpp │ ├── DebrisMgr.h │ ├── DebugLine.cpp │ ├── DebugLine.h │ ├── DebugMgr.cpp │ ├── DebugMgr.h │ ├── DebugNew.cpp │ ├── DebugNew.h │ ├── DebugNew_impl.h │ ├── FXButeMgr.cpp │ ├── FXButeMgr.h │ ├── FXProp.h │ ├── FXStructs.cpp │ ├── FXStructs.h │ ├── Factory.h │ ├── FastHeap.h │ ├── FastList.h │ ├── FastStack.h │ ├── FxDefs.h │ ├── FxFlags.h │ ├── GadgetTargetTypes.h │ ├── GameAlloc.cpp │ ├── GameButeMgr.cpp │ ├── GameButeMgr.h │ ├── GibTypes.h │ ├── GlobalMgr.cpp │ ├── GlobalMgr.h │ ├── Globals.h │ ├── HierarchicalButeMgr.h │ ├── IDList.h │ ├── ImpactType.h │ ├── KeyMgr.cpp │ ├── KeyMgr.h │ ├── LTPoly.h │ ├── Lang │ │ ├── DE │ │ │ └── ResShared.rc │ │ ├── EN │ │ │ └── ResShared.rc │ │ ├── ES │ │ │ └── ResShared.rc │ │ ├── FR │ │ │ └── ResShared.rc │ │ └── IT │ │ │ └── ResShared.rc │ ├── MissionButeMgr.cpp │ ├── MissionButeMgr.h │ ├── ModelButeMgr.cpp │ ├── ModelButeMgr.h │ ├── MsgIDs.h │ ├── NetDefs.cpp │ ├── NetDefs.h │ ├── ParsedMsg.cpp │ ├── ParsedMsg.h │ ├── PlayerShared.h │ ├── ProfileUtils.cpp │ ├── ProfileUtils.h │ ├── RadarTypeMgr.cpp │ ├── RadarTypeMgr.h │ ├── RelationTraitTypeEnums.h │ ├── ResShared.h │ ├── SFXMsgIds.h │ ├── SaveLoadMgr.cpp │ ├── SaveLoadMgr.h │ ├── ScmdConsole.cpp │ ├── ScmdConsole.h │ ├── ScmdShared.h │ ├── SearchItemMgr.cpp │ ├── SearchItemMgr.h │ ├── SharedBaseFXStructs.h │ ├── SharedFXStructs.cpp │ ├── SharedFXStructs.h │ ├── SharedMission.cpp │ ├── SharedMission.h │ ├── SharedMovement.cpp │ ├── SharedMovement.h │ ├── SharedScoring.cpp │ ├── SharedScoring.h │ ├── SkillsButeMgr.cpp │ ├── SkillsButeMgr.h │ ├── SoundButeMgr.cpp │ ├── SoundButeMgr.h │ ├── SoundFilterMgr.cpp │ ├── SoundFilterMgr.h │ ├── SoundMgr.cpp │ ├── SoundMgr.h │ ├── SoundTypes.h │ ├── StandardCreator.h │ ├── SurfaceDefs.h │ ├── SurfaceFunctions.cpp │ ├── SurfaceFunctions.h │ ├── SurfaceMgr.cpp │ ├── SurfaceMgr.h │ ├── TO2 │ │ ├── TO2MissionButeMgr.cpp │ │ ├── TO2MissionButeMgr.h │ │ ├── TO2VersionMgr.cpp │ │ └── TO2VersionMgr.h │ ├── TeamMgr.cpp │ ├── TeamMgr.h │ ├── TemplateList.cpp │ ├── TemplateList.h │ ├── Timer.h │ ├── TrackedNode.cpp │ ├── TrackedNode.h │ ├── TrackedNodeContext.cpp │ ├── TrackedNodeContext.h │ ├── TrackedNodeControlFn.cpp │ ├── TrackedNodeMgr.cpp │ ├── TrackedNodeMgr.h │ ├── TriggerTypeMgr.cpp │ ├── TriggerTypeMgr.h │ ├── UberAssert.cpp │ ├── UberAssert.h │ ├── VersionMgr.cpp │ ├── VersionMgr.h │ ├── WaveFn.cpp │ ├── WaveFn.h │ ├── WeaponFXTypes.h │ ├── WeaponMgr.cpp │ ├── WeaponMgr.h │ ├── WinUtil.cpp │ ├── WinUtil.h │ ├── linklist.h │ ├── stacktrace.cpp │ ├── stacktrace.h │ └── unistd.h ├── TO2-Game.sln ├── TO2.dsw ├── TO2.sln ├── _after_build_debug.bat ├── _server_dir_debug.bat ├── bison.exe ├── build.bat ├── flex.exe ├── game.dsp ├── game.mak ├── game.vcxproj ├── game.vcxproj.filters └── game.vcxproj.user ├── Libs.txt ├── Tools └── lithrez.exe ├── azure-pipelines.yml ├── libs ├── ButeMgr │ ├── ButeMgr.dsp │ ├── ButeMgr.vcxproj │ ├── ButeMgr.vcxproj.filters │ ├── ButeMgr.vcxproj.user │ ├── ButeMgrMfcDll.dsp │ ├── ButeMgrMfcDll.vcxproj │ ├── ButeMgrMfcDll.vcxproj.filters │ ├── ButeMgrMfcDll.vcxproj.user │ ├── Debug │ │ └── ButeMgrMfcDll.vcxprojAssemblyReference.cache │ ├── arange.cpp │ ├── arange.h │ ├── avector.cpp │ ├── avector.h │ ├── butemgr.cpp │ ├── butemgr.h │ ├── stdafx.cpp │ └── stdafx.h ├── CryptMgr │ ├── CryptMgrMfcDll.dsp │ ├── CryptMgrMfcDll.vcxproj │ ├── CryptMgrMfcDll.vcxproj.filters │ ├── CryptMgrMfcDll.vcxproj.user │ ├── Debug │ │ └── CryptMgrMfcDll.vcxprojAssemblyReference.cache │ ├── blowfish.cpp │ ├── blowfish.h │ ├── cryptmgr.cpp │ ├── cryptmgr.dsp │ ├── cryptmgr.h │ ├── cryptmgr.vcxproj │ ├── cryptmgr.vcxproj.filters │ └── cryptmgr.vcxproj.user ├── JServerDir │ ├── Exceptions.h │ ├── Helpers.h │ ├── ISocket.h │ ├── JServerDir.cpp │ ├── JServerDir.h │ ├── JServerDir.vcxproj │ ├── JServerDir.vcxproj.filters │ ├── JServerDir.vcxproj.user │ ├── Peer.cpp │ ├── Peer.h │ ├── TCPSocket.cpp │ ├── TCPSocket.h │ ├── UDPSocket.cpp │ ├── UDPSocket.h │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ └── pch.h ├── MFCStub │ ├── MFCStub60.dsp │ ├── MFCStub60.vcxproj │ ├── MFCStub60.vcxproj.filters │ ├── MFCStub60.vcxproj.user │ ├── mfcs_misc.h │ ├── mfcs_point.cpp │ ├── mfcs_point.h │ ├── mfcs_rect.cpp │ ├── mfcs_rect.h │ ├── mfcs_string.cpp │ ├── mfcs_string.h │ ├── mfcs_types.h │ ├── mfcstub.cpp │ ├── mfcstub.h │ └── stdafx.h ├── RegMgr │ ├── regmgr.cpp │ ├── regmgr.h │ ├── regmgr60.dsp │ ├── regmgr60.dsw │ ├── regmgr60.vcxproj │ ├── regmgr60.vcxproj.filters │ └── regmgr60.vcxproj.user ├── RegMgr32 │ ├── STDAFX.H │ ├── regmgr32.cpp │ ├── regmgr32.dsp │ ├── regmgr32.h │ ├── regmgr32.vcxproj │ ├── regmgr32.vcxproj.filters │ └── regmgr32.vcxproj.user ├── SDL2-2.0.12 │ ├── BUGS.txt │ ├── COPYING.txt │ ├── README-SDL.txt │ ├── README.txt │ ├── WhatsNew.txt │ ├── docs │ │ ├── README-android.md │ │ ├── README-cmake.md │ │ ├── README-directfb.md │ │ ├── README-dynapi.md │ │ ├── README-emscripten.md │ │ ├── README-gesture.md │ │ ├── README-hg.md │ │ ├── README-ios.md │ │ ├── README-linux.md │ │ ├── README-macosx.md │ │ ├── README-nacl.md │ │ ├── README-pandora.md │ │ ├── README-platforms.md │ │ ├── README-porting.md │ │ ├── README-psp.md │ │ ├── README-raspberrypi.md │ │ ├── README-touch.md │ │ ├── README-wince.md │ │ ├── README-windows.md │ │ ├── README-winrt.md │ │ ├── README.md │ │ └── doxyfile │ ├── include │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_config.h.cmake │ │ ├── SDL_config.h.in │ │ ├── SDL_config_android.h │ │ ├── SDL_config_iphoneos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_macosx.h.orig │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_pandora.h │ │ ├── SDL_config_psp.h │ │ ├── SDL_config_windows.h │ │ ├── SDL_config_winrt.h │ │ ├── SDL_config_wiz.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_egl.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.h │ │ ├── SDL_gamecontroller.h │ │ ├── SDL_gesture.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hints.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_metal.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_opengl_glext.h │ │ ├── SDL_opengles.h │ │ ├── SDL_opengles2.h │ │ ├── SDL_opengles2_gl2.h │ │ ├── SDL_opengles2_gl2ext.h │ │ ├── SDL_opengles2_gl2platform.h │ │ ├── SDL_opengles2_khrplatform.h │ │ ├── SDL_pixels.h │ │ ├── SDL_platform.h │ │ ├── SDL_power.h │ │ ├── SDL_quit.h │ │ ├── SDL_rect.h │ │ ├── SDL_render.h │ │ ├── SDL_revision.h │ │ ├── SDL_rwops.h │ │ ├── SDL_scancode.h │ │ ├── SDL_sensor.h │ │ ├── SDL_shape.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_surface.h │ │ ├── SDL_system.h │ │ ├── SDL_syswm.h │ │ ├── SDL_test.h │ │ ├── SDL_test_assert.h │ │ ├── SDL_test_common.h │ │ ├── SDL_test_compare.h │ │ ├── SDL_test_crc32.h │ │ ├── SDL_test_font.h │ │ ├── SDL_test_fuzzer.h │ │ ├── SDL_test_harness.h │ │ ├── SDL_test_images.h │ │ ├── SDL_test_log.h │ │ ├── SDL_test_md5.h │ │ ├── SDL_test_memory.h │ │ ├── SDL_test_random.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── SDL_vulkan.h │ │ ├── begin_code.h │ │ └── close_code.h │ └── lib │ │ ├── x64 │ │ ├── SDL2.dll │ │ ├── SDL2.lib │ │ ├── SDL2main.lib │ │ └── SDL2test.lib │ │ └── x86 │ │ ├── SDL2.dll │ │ ├── SDL2.lib │ │ ├── SDL2main.lib │ │ └── SDL2test.lib ├── STLPort-4.0 │ ├── ChangeLog │ ├── INSTALL │ ├── README │ ├── TODO │ ├── doc │ │ ├── FAQ.html │ │ ├── README.BC.html │ │ ├── README.CW.html │ │ ├── README.DEC.html │ │ ├── README.VC++.html │ │ ├── README.aCC.html │ │ ├── README.gcc.html │ │ ├── README.os390.html │ │ ├── README.pow.html │ │ ├── README.sgi40.html │ │ ├── README.sunpro.html │ │ ├── README.xlC.html │ │ ├── auto_configure.html │ │ ├── bug_report.html │ │ ├── buglist.html │ │ ├── build.html │ │ ├── build_nosgi.html │ │ ├── compiler_readmes.html │ │ ├── configure.html │ │ ├── contributors.html │ │ ├── copyrights.html │ │ ├── debug_mode.html │ │ ├── eh_testsuite.html │ │ ├── exception_safety.html │ │ ├── extensions.html │ │ ├── getting_started.html │ │ ├── images │ │ │ ├── blue.gif │ │ │ ├── logo.jpg │ │ │ └── logo_1.jpg │ │ ├── index.html │ │ ├── install.html │ │ ├── license.html │ │ ├── major_modes.html │ │ ├── platforms.html │ │ ├── prepare.html │ │ ├── projects.html │ │ ├── release_notes.html │ │ ├── select_io.html │ │ ├── sgi_stl.html │ │ ├── story.html │ │ ├── style.css │ │ ├── test.html │ │ ├── testsuite.html │ │ ├── thanks.html │ │ ├── use_stlport.html │ │ ├── vendor_interface.html │ │ └── wrappers.html │ ├── src │ │ ├── MrCpp.mak │ │ ├── SCpp.mak │ │ ├── bc502.mak │ │ ├── bcb.mak │ │ ├── bcb55.mak │ │ ├── c_locale.c │ │ ├── c_locale_glibc │ │ │ ├── c_locale_glibc.c │ │ │ └── gcc_localeinfo.h │ │ ├── c_locale_stub.cpp │ │ ├── codecvt.cpp │ │ ├── codecvt_byname.cpp │ │ ├── codecvt_w.cpp │ │ ├── collate.cpp │ │ ├── collate_byname.cpp │ │ ├── collate_byname_w.cpp │ │ ├── collate_w.cpp │ │ ├── common_macros.mak │ │ ├── common_percent_rules.mak │ │ ├── common_rules.mak │ │ ├── complex.cpp │ │ ├── complex_exp.cpp │ │ ├── complex_io.cpp │ │ ├── complex_io_w.cpp │ │ ├── complex_trig.cpp │ │ ├── ctype.cpp │ │ ├── ctype_byname.cpp │ │ ├── ctype_byname_w.cpp │ │ ├── ctype_w.cpp │ │ ├── cygwin.mak │ │ ├── dec.mak │ │ ├── dll_main.cpp │ │ ├── fstream.cpp │ │ ├── fstream_impl.h │ │ ├── fstream_w.cpp │ │ ├── gcc-glibc.mak │ │ ├── gcc.mak │ │ ├── gcc7.mak │ │ ├── gcc8.mak │ │ ├── hpacc.mak │ │ ├── intel.mak │ │ ├── ios.cpp │ │ ├── ios_base.cpp │ │ ├── ios_w.cpp │ │ ├── iostream.cpp │ │ ├── kai.mak │ │ ├── locale.cpp │ │ ├── locale_catalog.cpp │ │ ├── locale_impl.cpp │ │ ├── locale_impl.h │ │ ├── message_facets.cpp │ │ ├── message_facets.h │ │ ├── message_facets_w.cpp │ │ ├── mingw32.mak │ │ ├── monetary.cpp │ │ ├── money_get.cpp │ │ ├── money_get_w.cpp │ │ ├── money_put.cpp │ │ ├── money_put_w.cpp │ │ ├── moneypunct.cpp │ │ ├── moneypunct_byname.cpp │ │ ├── moneypunct_byname_w.cpp │ │ ├── moneypunct_w.cpp │ │ ├── msvc_warning_disablers.h │ │ ├── mwerks_debug_prefix.h │ │ ├── mwerks_prefix.h │ │ ├── mwerks_prj │ │ │ ├── libstlport.mcp │ │ │ ├── libstlport_Data │ │ │ │ └── CWSettingsWindows.stg │ │ │ └── tlib.cfg │ │ ├── mwerks_x86_prefix.h │ │ ├── nmake_common.mak │ │ ├── num_get.cpp │ │ ├── num_get_float.cpp │ │ ├── num_get_inst.cpp │ │ ├── num_get_inst_w.cpp │ │ ├── num_put.cpp │ │ ├── num_put.h │ │ ├── num_put_float.cpp │ │ ├── num_put_inst.cpp │ │ ├── num_put_inst_w.cpp │ │ ├── numpunct.cpp │ │ ├── numpunct_byname.cpp │ │ ├── numpunct_w.cpp │ │ ├── range_errors.cpp │ │ ├── sources │ │ ├── sstream.cpp │ │ ├── stdio_streambuf.cpp │ │ ├── stlport.rc │ │ ├── stlport_prefix.h │ │ ├── streambuf.cpp │ │ ├── string.cpp │ │ ├── string_w.cpp │ │ ├── strstream.cpp │ │ ├── sunpro-compat.mak │ │ ├── sunpro.mak │ │ ├── sunpro6.mak │ │ ├── test.cpp │ │ ├── time_facets.cpp │ │ ├── time_get.cpp │ │ ├── time_get_w.cpp │ │ ├── time_put.cpp │ │ ├── time_put_w.cpp │ │ ├── uint64.h │ │ ├── vc5.mak │ │ ├── vc6-unicode.mak │ │ ├── vc6.mak │ │ ├── vc_common.mak │ │ ├── vc_warning_disable.h │ │ └── watcom-qnx.mak │ ├── stlport │ │ ├── BC50 │ │ │ ├── README │ │ │ ├── algorith.h │ │ │ ├── alloc.h │ │ │ ├── bak │ │ │ │ ├── stddef.h │ │ │ │ └── stdlib.h │ │ │ ├── bitset.h │ │ │ ├── cassert.h │ │ │ ├── cctype.h │ │ │ ├── cerrno.h │ │ │ ├── cfloat.h │ │ │ ├── climits.h │ │ │ ├── clocale.h │ │ │ ├── cmath.h │ │ │ ├── complex.h │ │ │ ├── csetjmp.h │ │ │ ├── csignal.h │ │ │ ├── cstdarg.h │ │ │ ├── cstddef.h │ │ │ ├── cstdio.h │ │ │ ├── cstdlib.h │ │ │ ├── cstring.h │ │ │ ├── ctime.h │ │ │ ├── cwchar.h │ │ │ ├── cwctype.h │ │ │ ├── deque.h │ │ │ ├── exceptio.h │ │ │ ├── fstream.h │ │ │ ├── function.h │ │ │ ├── hash_map.h │ │ │ ├── hash_set.h │ │ │ ├── iomanip.h │ │ │ ├── ios.h │ │ │ ├── iosfwd.h │ │ │ ├── iostream.h │ │ │ ├── istream.h │ │ │ ├── iterator.h │ │ │ ├── limits.h │ │ │ ├── list.h │ │ │ ├── locale.h │ │ │ ├── make_bc50.sh │ │ │ ├── map.h │ │ │ ├── memory.h │ │ │ ├── numeric.h │ │ │ ├── ostream.h │ │ │ ├── pthread_alloc.h │ │ │ ├── queue.h │ │ │ ├── rope.h │ │ │ ├── set.h │ │ │ ├── slist.h │ │ │ ├── sstream.h │ │ │ ├── stack.h │ │ │ ├── stdexcep.h │ │ │ ├── stl_tmpl.h │ │ │ ├── streambu.h │ │ │ ├── streambuf.h │ │ │ ├── string.h │ │ │ ├── strstrea.h │ │ │ ├── typeinfo.h │ │ │ ├── using │ │ │ │ ├── cstring.h │ │ │ │ ├── fstream.h │ │ │ │ ├── iomanip.h │ │ │ │ ├── ios.h │ │ │ │ ├── iosfwd.h │ │ │ │ ├── iostream.h │ │ │ │ ├── istream.h │ │ │ │ ├── locale.h │ │ │ │ ├── ostream.h │ │ │ │ ├── sstream.h │ │ │ │ ├── streambuf.h │ │ │ │ └── strstream.h │ │ │ ├── utility.h │ │ │ ├── valarray.h │ │ │ └── vector.h │ │ ├── algorithm │ │ ├── bitset │ │ ├── cassert │ │ ├── cctype │ │ ├── cerrno │ │ ├── cfloat │ │ ├── climits │ │ ├── clocale │ │ ├── cmath │ │ ├── complex │ │ ├── config │ │ │ ├── _epilog.h │ │ │ ├── _msvc_warnings_off.h │ │ │ ├── _prolog.h │ │ │ ├── new_compiler │ │ │ │ ├── README │ │ │ │ ├── confdefs.h │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── stlconf.h │ │ │ │ ├── stlconf.h.in │ │ │ │ ├── test.cpp │ │ │ │ └── unconfigure │ │ │ ├── stl_apcc.h │ │ │ ├── stl_apple.bak.h │ │ │ ├── stl_apple.h │ │ │ ├── stl_as400.h │ │ │ ├── stl_bc.h │ │ │ ├── stl_como.h │ │ │ ├── stl_confix.h │ │ │ ├── stl_dec.h │ │ │ ├── stl_dec_vms.h │ │ │ ├── stl_gcc.h │ │ │ ├── stl_hpacc.h │ │ │ ├── stl_ibm.h │ │ │ ├── stl_intel.h │ │ │ ├── stl_kai.h │ │ │ ├── stl_mlc.h │ │ │ ├── stl_msvc.h │ │ │ ├── stl_mwerks.h │ │ │ ├── stl_mycomp.h │ │ │ ├── stl_sco.h │ │ │ ├── stl_select_lib.h │ │ │ ├── stl_sgi.h │ │ │ ├── stl_sunpro.h │ │ │ ├── stl_symantec.h │ │ │ ├── stl_watcom.h │ │ │ ├── stl_wince.h │ │ │ ├── stlcomp.h │ │ │ └── vc_select_lib.h │ │ ├── csetjmp │ │ ├── csignal │ │ ├── cstdarg │ │ ├── cstddef │ │ ├── cstdio │ │ ├── cstdlib │ │ ├── cstring │ │ ├── cstring.h │ │ ├── ctime │ │ ├── ctype.h │ │ ├── cwchar │ │ ├── cwctype │ │ ├── deque │ │ ├── exception │ │ ├── exception.h │ │ ├── fstream │ │ ├── fstream.h │ │ ├── functional │ │ ├── hash_map │ │ ├── hash_set │ │ ├── iomanip │ │ ├── iomanip.h │ │ ├── ios │ │ ├── ios.h │ │ ├── iosfwd │ │ ├── iostream │ │ ├── iostream.h │ │ ├── istream │ │ ├── istream.h │ │ ├── iterator │ │ ├── limits │ │ ├── list │ │ ├── locale │ │ ├── locale.h │ │ ├── map │ │ ├── math.h │ │ ├── mem.h │ │ ├── memory │ │ ├── memory.new │ │ ├── mmemory.h │ │ ├── new │ │ ├── new.h │ │ ├── numeric │ │ ├── old_hp │ │ │ ├── algo.h │ │ │ ├── algobase.h │ │ │ ├── alloc.h │ │ │ ├── bvector.h │ │ │ ├── defalloc.h │ │ │ ├── deque.h │ │ │ ├── function.h │ │ │ ├── hash_map.h │ │ │ ├── hash_set.h │ │ │ ├── hashtable.h │ │ │ ├── heap.h │ │ │ ├── iterator.h │ │ │ ├── list.h │ │ │ ├── map.h │ │ │ ├── multimap.h │ │ │ ├── multiset.h │ │ │ ├── numeric.h │ │ │ ├── pair.h │ │ │ ├── pthread_alloc.h │ │ │ ├── queue.h │ │ │ ├── rope.h │ │ │ ├── set.h │ │ │ ├── slist.h │ │ │ ├── stack.h │ │ │ ├── tempbuf.h │ │ │ ├── tree.h │ │ │ └── vector.h │ │ ├── ostream │ │ ├── ostream.h │ │ ├── pthread_alloc │ │ ├── queue │ │ ├── rope │ │ ├── set │ │ ├── setjmp.h │ │ ├── signal.h │ │ ├── slist │ │ ├── sstream │ │ ├── stack │ │ ├── stdarg.h │ │ ├── stddef.h │ │ ├── stdexcept │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── stl │ │ │ ├── _algo.c │ │ │ ├── _algo.h │ │ │ ├── _algobase.c │ │ │ ├── _algobase.h │ │ │ ├── _alloc.c │ │ │ ├── _alloc.h │ │ │ ├── _bitset.c │ │ │ ├── _bitset.h │ │ │ ├── _bvector.h │ │ │ ├── _check_config.h │ │ │ ├── _codecvt.h │ │ │ ├── _collate.h │ │ │ ├── _complex.c │ │ │ ├── _complex.h │ │ │ ├── _config.h │ │ │ ├── _construct.h │ │ │ ├── _ctraits_fns.h │ │ │ ├── _ctype.h │ │ │ ├── _deque.c │ │ │ ├── _deque.h │ │ │ ├── _epilog.h │ │ │ ├── _exception.h │ │ │ ├── _fstream.c │ │ │ ├── _fstream.h │ │ │ ├── _function.h │ │ │ ├── _hash_fun.h │ │ │ ├── _hash_map.h │ │ │ ├── _hash_set.h │ │ │ ├── _hashtable.c │ │ │ ├── _hashtable.h │ │ │ ├── _heap.c │ │ │ ├── _heap.h │ │ │ ├── _ios.c │ │ │ ├── _ios.h │ │ │ ├── _ios_base.h │ │ │ ├── _iosfwd.h │ │ │ ├── _istream.c │ │ │ ├── _istream.h │ │ │ ├── _iterator.h │ │ │ ├── _iterator_base.h │ │ │ ├── _limits.c │ │ │ ├── _limits.h │ │ │ ├── _list.c │ │ │ ├── _list.h │ │ │ ├── _locale.c │ │ │ ├── _locale.h │ │ │ ├── _map.h │ │ │ ├── _messages_facets.h │ │ │ ├── _monetary.c │ │ │ ├── _monetary.h │ │ │ ├── _null_stream.h │ │ │ ├── _numeric.c │ │ │ ├── _numeric.h │ │ │ ├── _numeric_facets.c │ │ │ ├── _numeric_facets.h │ │ │ ├── _ostream.c │ │ │ ├── _ostream.h │ │ │ ├── _pair.h │ │ │ ├── _prolog.h │ │ │ ├── _ptrs_specialize.h │ │ │ ├── _queue.h │ │ │ ├── _range_errors.h │ │ │ ├── _raw_storage_iter.h │ │ │ ├── _relops.h │ │ │ ├── _relops_cont.h │ │ │ ├── _relops_template.h │ │ │ ├── _rope.c │ │ │ ├── _rope.h │ │ │ ├── _set.h │ │ │ ├── _set_operators.h │ │ │ ├── _site_config.h │ │ │ ├── _slist.c │ │ │ ├── _slist.h │ │ │ ├── _slist_base.c │ │ │ ├── _slist_base.h │ │ │ ├── _sstream.c │ │ │ ├── _sstream.h │ │ │ ├── _stack.h │ │ │ ├── _stdio_file.h │ │ │ ├── _stream_iterator.h │ │ │ ├── _streambuf.c │ │ │ ├── _streambuf.h │ │ │ ├── _string.c │ │ │ ├── _string.h │ │ │ ├── _string_fwd.c │ │ │ ├── _string_fwd.h │ │ │ ├── _string_hash.h │ │ │ ├── _string_io.c │ │ │ ├── _string_io.h │ │ │ ├── _strstream.h │ │ │ ├── _tempbuf.c │ │ │ ├── _tempbuf.h │ │ │ ├── _threads.c │ │ │ ├── _threads.h │ │ │ ├── _time_facets.c │ │ │ ├── _time_facets.h │ │ │ ├── _tree.c │ │ │ ├── _tree.h │ │ │ ├── _uninitialized.h │ │ │ ├── _valarray.c │ │ │ ├── _valarray.h │ │ │ ├── _vector.c │ │ │ ├── _vector.h │ │ │ ├── c_locale.h │ │ │ ├── char_traits.h │ │ │ ├── concept_checks.h │ │ │ ├── container_concepts.h │ │ │ ├── debug │ │ │ │ ├── _debug.c │ │ │ │ ├── _debug.h │ │ │ │ ├── _deque.h │ │ │ │ ├── _hashtable.h │ │ │ │ ├── _iterator.h │ │ │ │ ├── _list.h │ │ │ │ ├── _slist.h │ │ │ │ ├── _string.h │ │ │ │ ├── _tree.h │ │ │ │ └── _vector.h │ │ │ ├── msl_string.h │ │ │ ├── stdio_streambuf │ │ │ ├── type_traits.h │ │ │ └── wrappers │ │ │ │ ├── _deque.h │ │ │ │ ├── _hash_map.h │ │ │ │ ├── _hash_set.h │ │ │ │ ├── _list.h │ │ │ │ ├── _map.h │ │ │ │ ├── _mmap.h │ │ │ │ ├── _set.h │ │ │ │ ├── _slist.h │ │ │ │ └── _vector.h │ │ ├── stl_user_config.h │ │ ├── streambuf │ │ ├── streambuf.h │ │ ├── string │ │ ├── string.h │ │ ├── strstream │ │ ├── strstream.h │ │ ├── time.h │ │ ├── typeinfo │ │ ├── typeinfo.h │ │ ├── using │ │ │ ├── cstring │ │ │ ├── fstream │ │ │ ├── h │ │ │ │ ├── fstream.h │ │ │ │ ├── iomanip.h │ │ │ │ ├── iostream.h │ │ │ │ ├── ostream.h │ │ │ │ └── strstream.h │ │ │ ├── iomanip │ │ │ ├── ios │ │ │ ├── iosfwd │ │ │ ├── iostream │ │ │ ├── istream │ │ │ ├── locale │ │ │ ├── ostream │ │ │ ├── sstream │ │ │ ├── streambuf │ │ │ └── strstream │ │ ├── utility │ │ ├── valarray │ │ ├── vector │ │ ├── wchar.h │ │ ├── wctype.h │ │ └── wrap_std │ │ │ ├── complex │ │ │ ├── fstream │ │ │ ├── h │ │ │ ├── fstream.h │ │ │ ├── iostream.h │ │ │ ├── streambuf.h │ │ │ └── strstream.h │ │ │ ├── iomanip │ │ │ ├── ios │ │ │ ├── iosfwd │ │ │ ├── iostream │ │ │ ├── istream │ │ │ ├── locale │ │ │ ├── ostream │ │ │ ├── sstream │ │ │ ├── streambuf │ │ │ └── strstream │ └── test │ │ ├── eh │ │ ├── LeakCheck.h │ │ ├── Prefix.h │ │ ├── SortClass.h │ │ ├── TestClass.cpp │ │ ├── TestClass.h │ │ ├── Tests.h │ │ ├── ThrowCompare.h │ │ ├── bcb.mak │ │ ├── como.mak │ │ ├── cygwin.mak │ │ ├── deccxx.mak │ │ ├── descrip.mms │ │ ├── egcs.mak │ │ ├── export │ │ ├── gcc.mak │ │ ├── gcc7.mak │ │ ├── hp.mak │ │ ├── hpacc.mak │ │ ├── intel.mak │ │ ├── kai.mak │ │ ├── log │ │ ├── main.cpp │ │ ├── mingw32.mak │ │ ├── mwerks_debug_prefix.h │ │ ├── mwerks_nosgi_debug_prefix.h │ │ ├── mwerks_nosgi_prefix.h │ │ ├── mwerks_prefix.h │ │ ├── mwerks_prj │ │ │ ├── EH.mcp │ │ │ └── tlib.cfg │ │ ├── nc_alloc.cpp │ │ ├── nc_alloc.h │ │ ├── random_number.cpp │ │ ├── random_number.h │ │ ├── sunpro.mak │ │ ├── sunpro5.mak │ │ ├── test.cpp │ │ ├── test_algo.cpp │ │ ├── test_algobase.cpp │ │ ├── test_assign_op.h │ │ ├── test_bit_vector.cpp │ │ ├── test_bitset.cpp │ │ ├── test_construct.h │ │ ├── test_deque.cpp │ │ ├── test_hash_map.cpp │ │ ├── test_hash_resize.h │ │ ├── test_hash_set.cpp │ │ ├── test_insert.h │ │ ├── test_list.cpp │ │ ├── test_map.cpp │ │ ├── test_push_back.h │ │ ├── test_push_front.h │ │ ├── test_rope.cpp │ │ ├── test_set.cpp │ │ ├── test_slist.cpp │ │ ├── test_string.cpp │ │ ├── test_valarray.cpp │ │ ├── test_vector.cpp │ │ ├── vc.mak │ │ └── vc5.mak │ │ └── regression │ │ ├── BccW32.cfg │ │ ├── MrCpp.mak │ │ ├── README.txt │ │ ├── ReadMe.MPW │ │ ├── SCpp.mak │ │ ├── accum1.cpp │ │ ├── accum2.cpp │ │ ├── adjdiff0.cpp │ │ ├── adjdiff1.cpp │ │ ├── adjdiff2.cpp │ │ ├── adjfind0.cpp │ │ ├── adjfind1.cpp │ │ ├── adjfind2.cpp │ │ ├── advance.cpp │ │ ├── alg1.cpp │ │ ├── alg2.cpp │ │ ├── alg3.cpp │ │ ├── alg4.cpp │ │ ├── alg5.cpp │ │ ├── bc.mak │ │ ├── bc502.mak │ │ ├── bcb.mak │ │ ├── bcompos1.cpp │ │ ├── bcompos2.cpp │ │ ├── bind1st1.cpp │ │ ├── bind1st2.cpp │ │ ├── bind2nd1.cpp │ │ ├── bind2nd2.cpp │ │ ├── binsert1.cpp │ │ ├── binsert2.cpp │ │ ├── binsrch1.cpp │ │ ├── binsrch2.cpp │ │ ├── bitset1.cpp │ │ ├── bnegate1.cpp │ │ ├── bnegate2.cpp │ │ ├── bug.cpp │ │ ├── bvec1.cpp │ │ ├── copy1.cpp │ │ ├── copy2.cpp │ │ ├── copy3.cpp │ │ ├── copy4.cpp │ │ ├── copyb.cpp │ │ ├── copyb0.cpp │ │ ├── count0.cpp │ │ ├── count1.cpp │ │ ├── countif1.cpp │ │ ├── deccxx.mak │ │ ├── deque1.cpp │ │ ├── divides.cpp │ │ ├── egcs.mak │ │ ├── eqlrnge0.cpp │ │ ├── eqlrnge1.cpp │ │ ├── eqlrnge2.cpp │ │ ├── equal0.cpp │ │ ├── equal1.cpp │ │ ├── equal2.cpp │ │ ├── equalto.cpp │ │ ├── fadapter.h │ │ ├── fib.h │ │ ├── fill1.cpp │ │ ├── filln1.cpp │ │ ├── find0.cpp │ │ ├── find1.cpp │ │ ├── findif0.cpp │ │ ├── findif1.cpp │ │ ├── finsert1.cpp │ │ ├── finsert2.cpp │ │ ├── foreach0.cpp │ │ ├── foreach1.cpp │ │ ├── fstream.txt │ │ ├── fstream1.cpp │ │ ├── func1.cpp │ │ ├── func2.cpp │ │ ├── func3.cpp │ │ ├── gcc-repo.mak │ │ ├── gcc.gmake │ │ ├── gcc.mak │ │ ├── gener1.cpp │ │ ├── gener2.cpp │ │ ├── genern1.cpp │ │ ├── genern2.cpp │ │ ├── greateq.cpp │ │ ├── greater.cpp │ │ ├── hmap1.cpp │ │ ├── hmmap1.cpp │ │ ├── hmset1.cpp │ │ ├── hpacc.mak │ │ ├── hset2.cpp │ │ ├── ibm390.mak │ │ ├── incl0.cpp │ │ ├── incl1.cpp │ │ ├── incl2.cpp │ │ ├── inplmrg1.cpp │ │ ├── inplmrg2.cpp │ │ ├── inrprod0.cpp │ │ ├── inrprod1.cpp │ │ ├── inrprod2.cpp │ │ ├── insert1.cpp │ │ ├── insert2.cpp │ │ ├── intel.mak │ │ ├── iota1.cpp │ │ ├── istmit1.cpp │ │ ├── iter1.cpp │ │ ├── iter2.cpp │ │ ├── iter3.cpp │ │ ├── iter4.cpp │ │ ├── iterswp0.cpp │ │ ├── iterswp1.cpp │ │ ├── kai.mak │ │ ├── kcc-new.mak │ │ ├── kcc.mak │ │ ├── less.cpp │ │ ├── lesseq.cpp │ │ ├── lexcmp1.cpp │ │ ├── lexcmp2.cpp │ │ ├── list1.cpp │ │ ├── list2.cpp │ │ ├── list3.cpp │ │ ├── list4.cpp │ │ ├── log │ │ ├── logicand.cpp │ │ ├── logicnot.cpp │ │ ├── logicor.cpp │ │ ├── lwrbnd1.cpp │ │ ├── lwrbnd2.cpp │ │ ├── map1.cpp │ │ ├── map1.hpp │ │ ├── max1.cpp │ │ ├── max2.cpp │ │ ├── maxelem1.cpp │ │ ├── maxelem2.cpp │ │ ├── merge0.cpp │ │ ├── merge1.cpp │ │ ├── merge2.cpp │ │ ├── min1.cpp │ │ ├── min2.cpp │ │ ├── minelem1.cpp │ │ ├── minelem2.cpp │ │ ├── minus.cpp │ │ ├── mismtch0.cpp │ │ ├── mismtch1.cpp │ │ ├── mismtch2.cpp │ │ ├── mkheap0.cpp │ │ ├── mkheap1.cpp │ │ ├── mmap1.cpp │ │ ├── mmap2.cpp │ │ ├── modulus.cpp │ │ ├── mset1.cpp │ │ ├── mset3.cpp │ │ ├── mset4.cpp │ │ ├── mset5.cpp │ │ ├── negate.cpp │ │ ├── nequal.cpp │ │ ├── nextprm0.cpp │ │ ├── nextprm1.cpp │ │ ├── nextprm2.cpp │ │ ├── nthelem0.cpp │ │ ├── nthelem1.cpp │ │ ├── nthelem2.cpp │ │ ├── ostmit.cpp │ │ ├── pair0.cpp │ │ ├── pair1.cpp │ │ ├── pair2.cpp │ │ ├── parsrt0.cpp │ │ ├── parsrt1.cpp │ │ ├── parsrt2.cpp │ │ ├── parsrtc0.cpp │ │ ├── parsrtc1.cpp │ │ ├── parsrtc2.cpp │ │ ├── partsrt0.cpp │ │ ├── partsum0.cpp │ │ ├── partsum1.cpp │ │ ├── partsum2.cpp │ │ ├── pheap1.cpp │ │ ├── pheap2.cpp │ │ ├── plus.cpp │ │ ├── pqueue1.cpp │ │ ├── prevprm0.cpp │ │ ├── prevprm1.cpp │ │ ├── prevprm2.cpp │ │ ├── ptition0.cpp │ │ ├── ptition1.cpp │ │ ├── ptrbinf1.cpp │ │ ├── ptrbinf2.cpp │ │ ├── ptrunf1.cpp │ │ ├── ptrunf2.cpp │ │ ├── queue1.cpp │ │ ├── rand.h │ │ ├── rawiter.cpp │ │ ├── rawiter.hpp │ │ ├── remcopy1.cpp │ │ ├── remcpif1.cpp │ │ ├── remif1.cpp │ │ ├── remove1.cpp │ │ ├── repcpif1.cpp │ │ ├── replace0.cpp │ │ ├── replace1.cpp │ │ ├── replcpy1.cpp │ │ ├── replif1.cpp │ │ ├── revbit1.cpp │ │ ├── revbit2.cpp │ │ ├── revcopy1.cpp │ │ ├── reverse1.cpp │ │ ├── reviter1.cpp │ │ ├── reviter2.cpp │ │ ├── rndshuf0.cpp │ │ ├── rndshuf1.cpp │ │ ├── rndshuf2.cpp │ │ ├── rotate0.cpp │ │ ├── rotate1.cpp │ │ ├── rotcopy0.cpp │ │ ├── rotcopy1.cpp │ │ ├── search0.cpp │ │ ├── search1.cpp │ │ ├── search2.cpp │ │ ├── seek.cpp │ │ ├── seek.res │ │ ├── seek.txt │ │ ├── set1.cpp │ │ ├── set2.cpp │ │ ├── setdiff0.cpp │ │ ├── setdiff1.cpp │ │ ├── setdiff2.cpp │ │ ├── setintr0.cpp │ │ ├── setintr1.cpp │ │ ├── setintr2.cpp │ │ ├── setsymd0.cpp │ │ ├── setsymd1.cpp │ │ ├── setsymd2.cpp │ │ ├── setunon0.cpp │ │ ├── setunon1.cpp │ │ ├── setunon2.cpp │ │ ├── single.cpp │ │ ├── slist1.cpp │ │ ├── sort1.cpp │ │ ├── sort2.cpp │ │ ├── sstream1.cpp │ │ ├── stack1.cpp │ │ ├── stack2.cpp │ │ ├── stat.cpp │ │ ├── stblptn0.cpp │ │ ├── stblptn1.cpp │ │ ├── stblsrt1.cpp │ │ ├── stblsrt2.cpp │ │ ├── stdin │ │ ├── stl.h │ │ ├── stl_single.cpp │ │ ├── stl_test.cpp │ │ ├── stl_test.h │ │ ├── stl_test.mak │ │ ├── strass1.cpp │ │ ├── string1.cpp │ │ ├── sunpro.mak │ │ ├── swap1.cpp │ │ ├── swprnge1.cpp │ │ ├── times.cpp │ │ ├── trnsfrm1.cpp │ │ ├── trnsfrm2.cpp │ │ ├── tst.cpp │ │ ├── tstdeq.cpp │ │ ├── ucompos1.cpp │ │ ├── ucompos2.cpp │ │ ├── unary.h │ │ ├── unegate1.cpp │ │ ├── unegate2.cpp │ │ ├── uniqcpy1.cpp │ │ ├── uniqcpy2.cpp │ │ ├── unique1.cpp │ │ ├── unique2.cpp │ │ ├── uprbnd1.cpp │ │ ├── uprbnd2.cpp │ │ ├── vc.gmake │ │ ├── vc.mak │ │ ├── vec1.cpp │ │ ├── vec2.cpp │ │ ├── vec3.cpp │ │ ├── vec4.cpp │ │ ├── vec5.cpp │ │ ├── vec6.cpp │ │ ├── vec7.cpp │ │ ├── vec8.cpp │ │ ├── visualage.mak │ │ ├── watcom-qnx.mak │ │ └── xlC.mak ├── STLPort-STD │ ├── config │ │ ├── _epilog.h │ │ ├── _msvc_warnings_off.h │ │ ├── _prolog.h │ │ ├── new_compiler │ │ │ ├── README │ │ │ ├── confdefs.h │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── stlconf.h │ │ │ ├── stlconf.h.in │ │ │ ├── test.cpp │ │ │ └── unconfigure │ │ ├── stl_apcc.h │ │ ├── stl_apple.bak.h │ │ ├── stl_apple.h │ │ ├── stl_as400.h │ │ ├── stl_bc.h │ │ ├── stl_como.h │ │ ├── stl_confix.h │ │ ├── stl_dec.h │ │ ├── stl_dec_vms.h │ │ ├── stl_gcc.h │ │ ├── stl_hpacc.h │ │ ├── stl_ibm.h │ │ ├── stl_intel.h │ │ ├── stl_kai.h │ │ ├── stl_mlc.h │ │ ├── stl_msvc.h │ │ ├── stl_mwerks.h │ │ ├── stl_mycomp.h │ │ ├── stl_sco.h │ │ ├── stl_select_lib.h │ │ ├── stl_sgi.h │ │ ├── stl_sunpro.h │ │ ├── stl_symantec.h │ │ ├── stl_watcom.h │ │ ├── stl_wince.h │ │ ├── stlcomp.h │ │ └── vc_select_lib.h │ ├── readme.txt │ ├── stl │ │ ├── _algo.c │ │ ├── _algo.h │ │ ├── _algobase.c │ │ ├── _algobase.h │ │ ├── _alloc.c │ │ ├── _alloc.h │ │ ├── _bitset.c │ │ ├── _bitset.h │ │ ├── _bvector.h │ │ ├── _check_config.h │ │ ├── _codecvt.h │ │ ├── _collate.h │ │ ├── _complex.c │ │ ├── _complex.h │ │ ├── _config.h │ │ ├── _construct.h │ │ ├── _ctraits_fns.h │ │ ├── _ctype.h │ │ ├── _deque.c │ │ ├── _deque.h │ │ ├── _epilog.h │ │ ├── _exception.h │ │ ├── _fstream.c │ │ ├── _fstream.h │ │ ├── _function.h │ │ ├── _hash_fun.h │ │ ├── _hash_map.h │ │ ├── _hash_set.h │ │ ├── _hashtable.c │ │ ├── _hashtable.h │ │ ├── _heap.c │ │ ├── _heap.h │ │ ├── _ios.c │ │ ├── _ios.h │ │ ├── _ios_base.h │ │ ├── _iosfwd.h │ │ ├── _istream.c │ │ ├── _istream.h │ │ ├── _iterator.h │ │ ├── _iterator_base.h │ │ ├── _limits.c │ │ ├── _limits.h │ │ ├── _list.c │ │ ├── _list.h │ │ ├── _locale.c │ │ ├── _locale.h │ │ ├── _map.h │ │ ├── _messages_facets.h │ │ ├── _monetary.c │ │ ├── _monetary.h │ │ ├── _null_stream.h │ │ ├── _numeric.c │ │ ├── _numeric.h │ │ ├── _numeric_facets.c │ │ ├── _numeric_facets.h │ │ ├── _ostream.c │ │ ├── _ostream.h │ │ ├── _pair.h │ │ ├── _prolog.h │ │ ├── _ptrs_specialize.h │ │ ├── _queue.h │ │ ├── _range_errors.h │ │ ├── _raw_storage_iter.h │ │ ├── _relops.h │ │ ├── _relops_cont.h │ │ ├── _relops_template.h │ │ ├── _rope.c │ │ ├── _rope.h │ │ ├── _set.h │ │ ├── _set_operators.h │ │ ├── _site_config.h │ │ ├── _slist.c │ │ ├── _slist.h │ │ ├── _slist_base.c │ │ ├── _slist_base.h │ │ ├── _sstream.c │ │ ├── _sstream.h │ │ ├── _stack.h │ │ ├── _stdio_file.h │ │ ├── _stream_iterator.h │ │ ├── _streambuf.c │ │ ├── _streambuf.h │ │ ├── _string.c │ │ ├── _string.h │ │ ├── _string_fwd.c │ │ ├── _string_fwd.h │ │ ├── _string_hash.h │ │ ├── _string_io.c │ │ ├── _string_io.h │ │ ├── _strstream.h │ │ ├── _tempbuf.c │ │ ├── _tempbuf.h │ │ ├── _threads.c │ │ ├── _threads.h │ │ ├── _time_facets.c │ │ ├── _time_facets.h │ │ ├── _tree.c │ │ ├── _tree.h │ │ ├── _uninitialized.h │ │ ├── _valarray.c │ │ ├── _valarray.h │ │ ├── _vector.c │ │ ├── _vector.h │ │ ├── c_locale.h │ │ ├── char_traits.h │ │ ├── concept_checks.h │ │ ├── container_concepts.h │ │ ├── debug │ │ │ ├── _debug.c │ │ │ ├── _debug.h │ │ │ ├── _deque.h │ │ │ ├── _hashtable.h │ │ │ ├── _iterator.h │ │ │ ├── _list.h │ │ │ ├── _slist.h │ │ │ ├── _string.h │ │ │ ├── _tree.h │ │ │ └── _vector.h │ │ ├── msl_string.h │ │ ├── stdio_streambuf │ │ ├── type_traits.h │ │ └── wrappers │ │ │ ├── _deque.h │ │ │ ├── _hash_map.h │ │ │ ├── _hash_set.h │ │ │ ├── _list.h │ │ │ ├── _map.h │ │ │ ├── _mmap.h │ │ │ ├── _set.h │ │ │ ├── _slist.h │ │ │ └── _vector.h │ ├── stl_new │ ├── stl_new.h │ ├── stl_string │ ├── stl_string.h │ ├── stl_user_config.h │ └── stl_vector.h ├── built │ ├── Debug │ │ ├── ButeMgrMFCDll │ │ │ └── ButeMgrMfcDll.lib │ │ └── CryptMgrMfcDll │ │ │ └── CryptMgrMfcDll.lib │ └── Final │ │ ├── ButeMgrMfcDll │ │ └── ButeMgrMfcDll.lib │ │ └── CryptMgrMfcDll │ │ └── CryptMgrMfcDll.lib ├── dibmgr │ ├── DibMgrMfcDll.dsp │ ├── dib.cpp │ ├── dib.h │ ├── dibmgr.cpp │ ├── dibmgr.h │ ├── dibmgr60.dsp │ ├── dibpal.cpp │ ├── dibpal.h │ └── stdafx.h ├── genregmgr │ ├── genregmgr.cpp │ ├── genregmgr.h │ └── genregmgr60.dsp ├── lith │ ├── Lib_Lith.dsp │ ├── Lib_Lith.vcxproj │ ├── Lib_Lith.vcxproj.filters │ ├── Lib_Lith.vcxproj.user │ ├── Makefile │ ├── basehash.cpp │ ├── basehash.h │ ├── baselist.cpp │ ├── baselist.h │ ├── baselistcounter.cpp │ ├── baselistcounter.h │ ├── dprintf.cpp │ ├── dprintf.h │ ├── lith.cpp │ ├── lith.h │ ├── lithbaselist.cpp │ ├── lithbaselist.h │ ├── lithchunkallocator.cpp │ ├── lithchunkallocator.h │ ├── lithsimpary.cpp │ ├── lithsimpary.h │ ├── lithsimparystat.cpp │ ├── lithsimparystat.h │ ├── lithtmpl.h │ ├── lithtypes.h │ ├── virtlist.cpp │ ├── virtlist.h │ └── xbox_msvc │ │ └── LibXBox_Lith.dsp ├── stdlith │ ├── Lib_StdLith.dsp │ ├── Lib_StdLith.vcxproj │ ├── Lib_StdLith.vcxproj.filters │ ├── Lib_StdLith.vcxproj.user │ ├── Makefile │ ├── abstractio.cpp │ ├── abstractio.h │ ├── copy_lists.h │ ├── dynarray.cpp │ ├── dynarray.h │ ├── dynarray.h.bak │ ├── fastlinklist.h │ ├── fileio.cpp │ ├── fileio.h │ ├── genhash.h │ ├── genlist.h │ ├── glink.h │ ├── goodlinklist.cpp │ ├── goodlinklist.h │ ├── helpers.cpp │ ├── helpers.h │ ├── l_allocator.cpp │ ├── l_allocator.h │ ├── linklist.cpp │ ├── linklist.h │ ├── lithexception.cpp │ ├── lithexception.h │ ├── memory.cpp │ ├── memory.h │ ├── memoryio.cpp │ ├── memoryio.h │ ├── morect.h │ ├── multilinklist.h │ ├── object_bank.h │ ├── stdafx.h │ ├── stdlith.h │ ├── stdlithdefs.h │ ├── stringholder.cpp │ ├── stringholder.h │ ├── struct_bank.cpp │ ├── struct_bank.h │ ├── sys │ │ └── win │ │ │ ├── compressedio.cpp │ │ │ └── compressedio.h │ └── xbox_msvc │ │ └── LibXBox_StdLith.dsp └── zlib │ ├── Lib_ZLib.dsp │ ├── adler32.c │ ├── compress.c │ ├── crc32.c │ ├── deflate.c │ ├── deflate.h │ ├── gzio.c │ ├── infblock.c │ ├── infblock.h │ ├── infcodes.c │ ├── infcodes.h │ ├── inffast.c │ ├── inffast.h │ ├── inflate.c │ ├── inftrees.c │ ├── inftrees.h │ ├── infutil.c │ ├── infutil.h │ ├── trees.c │ ├── uncompr.c │ ├── zconf.h │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── osslicenses.txt └── readme.md /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/JServerInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Assets/JServerInfo.txt -------------------------------------------------------------------------------- /Assets/Lithtech.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Assets/Lithtech.exe -------------------------------------------------------------------------------- /Assets/Mod/Attributes/Jukebox.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Assets/Mod/Attributes/Jukebox.txt -------------------------------------------------------------------------------- /Assets/Mod/Attributes/Layout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Assets/Mod/Attributes/Layout.txt -------------------------------------------------------------------------------- /Assets/Mod/Interface/console.PCX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Assets/Mod/Interface/console.PCX -------------------------------------------------------------------------------- /Assets/Mod/Interface/console.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Assets/Mod/Interface/console.dtx -------------------------------------------------------------------------------- /Assets/ModernizerReadme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Assets/ModernizerReadme.txt -------------------------------------------------------------------------------- /Assets/Profiles/Default.prf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Assets/Profiles/Default.prf -------------------------------------------------------------------------------- /Assets/controls.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Assets/controls.cfg -------------------------------------------------------------------------------- /Assets/potential music names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Assets/potential music names.txt -------------------------------------------------------------------------------- /BuildDebug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/BuildDebug.bat -------------------------------------------------------------------------------- /BuildFinal.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/BuildFinal.bat -------------------------------------------------------------------------------- /BuildRelease.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/BuildRelease.bat -------------------------------------------------------------------------------- /EULA.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/EULA.htm -------------------------------------------------------------------------------- /Engine/sdk/Legal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/Legal.txt -------------------------------------------------------------------------------- /Engine/sdk/inc/LTEulerAngles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/LTEulerAngles.cpp -------------------------------------------------------------------------------- /Engine/sdk/inc/LTEulerAngles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/LTEulerAngles.h -------------------------------------------------------------------------------- /Engine/sdk/inc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/Makefile -------------------------------------------------------------------------------- /Engine/sdk/inc/clientheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/clientheaders.h -------------------------------------------------------------------------------- /Engine/sdk/inc/cui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/cui.h -------------------------------------------------------------------------------- /Engine/sdk/inc/cuibase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/cuibase.h -------------------------------------------------------------------------------- /Engine/sdk/inc/cuibutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/cuibutton.h -------------------------------------------------------------------------------- /Engine/sdk/inc/cuicheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/cuicheck.h -------------------------------------------------------------------------------- /Engine/sdk/inc/cuidropdownlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/cuidropdownlist.h -------------------------------------------------------------------------------- /Engine/sdk/inc/cuifont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/cuifont.h -------------------------------------------------------------------------------- /Engine/sdk/inc/cuiinterval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/cuiinterval.h -------------------------------------------------------------------------------- /Engine/sdk/inc/cuilist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/cuilist.h -------------------------------------------------------------------------------- /Engine/sdk/inc/cuimessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/cuimessage.h -------------------------------------------------------------------------------- /Engine/sdk/inc/cuioption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/cuioption.h -------------------------------------------------------------------------------- /Engine/sdk/inc/cuipolystring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/cuipolystring.h -------------------------------------------------------------------------------- /Engine/sdk/inc/cuiprogress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/cuiprogress.h -------------------------------------------------------------------------------- /Engine/sdk/inc/cuislider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/cuislider.h -------------------------------------------------------------------------------- /Engine/sdk/inc/cuistaticimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/cuistaticimage.h -------------------------------------------------------------------------------- /Engine/sdk/inc/cuistatictext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/cuistatictext.h -------------------------------------------------------------------------------- /Engine/sdk/inc/cuitypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/cuitypes.h -------------------------------------------------------------------------------- /Engine/sdk/inc/cuiwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/cuiwidget.h -------------------------------------------------------------------------------- /Engine/sdk/inc/cuiwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/cuiwindow.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iaggregate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iaggregate.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iclientshell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iclientshell.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltbaseclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltbaseclass.cpp -------------------------------------------------------------------------------- /Engine/sdk/inc/iltbaseclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltbaseclass.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltbenchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltbenchmark.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltclient.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltcommon.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltcsbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltcsbase.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltcursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltcursor.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltdirectmusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltdirectmusic.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltdrawprim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltdrawprim.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltesd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltesd.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltfontmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltfontmanager.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltinfo.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltmath.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltmemory.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltmessage.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltmodel.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltphysics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltphysics.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltpreinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltpreinterface.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltrefcount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltrefcount.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltrenderstyles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltrenderstyles.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltserver.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltsoundmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltsoundmgr.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltspritecontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltspritecontrol.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltstream.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ilttexinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ilttexinterface.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ilttransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ilttransform.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltvideomgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltvideomgr.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iltwidgetmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iltwidgetmanager.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iobjectplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iobjectplugin.h -------------------------------------------------------------------------------- /Engine/sdk/inc/iservershell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/iservershell.h -------------------------------------------------------------------------------- /Engine/sdk/inc/libltdiagnostics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/libltdiagnostics.h -------------------------------------------------------------------------------- /Engine/sdk/inc/libltinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/libltinfo.h -------------------------------------------------------------------------------- /Engine/sdk/inc/libltphysics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/libltphysics.h -------------------------------------------------------------------------------- /Engine/sdk/inc/lithtech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/lithtech.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltanimtracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltanimtracker.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltassert.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltbasedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltbasedefs.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltbasetypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltbasetypes.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltbeziercurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltbeziercurve.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltcodes.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltdistrchatdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltdistrchatdefs.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltengineobjects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltengineobjects.cpp -------------------------------------------------------------------------------- /Engine/sdk/inc/ltengineobjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltengineobjects.h -------------------------------------------------------------------------------- /Engine/sdk/inc/lterror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/lterror.cpp -------------------------------------------------------------------------------- /Engine/sdk/inc/lterror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/lterror.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltinteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltinteger.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltlink.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltmatrix.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltmem.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltmodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltmodule.cpp -------------------------------------------------------------------------------- /Engine/sdk/inc/ltmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltmodule.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltobjectcreate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltobjectcreate.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltobjref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltobjref.cpp -------------------------------------------------------------------------------- /Engine/sdk/inc/ltobjref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltobjref.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltplane.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltproperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltproperty.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltpvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltpvalue.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltquatbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltquatbase.cpp -------------------------------------------------------------------------------- /Engine/sdk/inc/ltquatbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltquatbase.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltrect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltrect.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltrenderstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltrenderstyle.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltrotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltrotation.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltserverobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltserverobj.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltsysoptim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltsysoptim.h -------------------------------------------------------------------------------- /Engine/sdk/inc/ltvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/ltvector.h -------------------------------------------------------------------------------- /Engine/sdk/inc/physics/aabb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/physics/aabb.h -------------------------------------------------------------------------------- /Engine/sdk/inc/physics/aabb_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/physics/aabb_tree.h -------------------------------------------------------------------------------- /Engine/sdk/inc/physics/build_aabb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/physics/build_aabb.h -------------------------------------------------------------------------------- /Engine/sdk/inc/physics/cylinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/physics/cylinder.h -------------------------------------------------------------------------------- /Engine/sdk/inc/physics/gjk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/physics/gjk.h -------------------------------------------------------------------------------- /Engine/sdk/inc/physics/math_phys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/physics/math_phys.h -------------------------------------------------------------------------------- /Engine/sdk/inc/physics/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/physics/matrix.h -------------------------------------------------------------------------------- /Engine/sdk/inc/physics/obb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/physics/obb.h -------------------------------------------------------------------------------- /Engine/sdk/inc/physics/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/physics/quaternion.h -------------------------------------------------------------------------------- /Engine/sdk/inc/physics/rigid_body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/physics/rigid_body.h -------------------------------------------------------------------------------- /Engine/sdk/inc/physics/sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/physics/sphere.h -------------------------------------------------------------------------------- /Engine/sdk/inc/physics/triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/physics/triangle.h -------------------------------------------------------------------------------- /Engine/sdk/inc/physics/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/physics/vector.h -------------------------------------------------------------------------------- /Engine/sdk/inc/server_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/server_interface.h -------------------------------------------------------------------------------- /Engine/sdk/inc/serverheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/serverheaders.h -------------------------------------------------------------------------------- /Engine/sdk/inc/sys/win/winoptim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/inc/sys/win/winoptim.h -------------------------------------------------------------------------------- /Engine/sdk/lib/server.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/lib/server.lib -------------------------------------------------------------------------------- /Engine/sdk/rez/Engine.REZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/rez/Engine.REZ -------------------------------------------------------------------------------- /Engine/sdk/win/lib/bink/binkw32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Engine/sdk/win/lib/bink/binkw32.dll -------------------------------------------------------------------------------- /Game/AutoRun2/AutoRun.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/AutoRun2/AutoRun.ico -------------------------------------------------------------------------------- /Game/AutoRun2/AutoRun2.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/AutoRun2/AutoRun2.aps -------------------------------------------------------------------------------- /Game/AutoRun2/AutoRun2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/AutoRun2/AutoRun2.cpp -------------------------------------------------------------------------------- /Game/AutoRun2/AutoRun2.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/AutoRun2/AutoRun2.dsp -------------------------------------------------------------------------------- /Game/AutoRun2/AutoRun2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/AutoRun2/AutoRun2.rc -------------------------------------------------------------------------------- /Game/AutoRun2/AutoRun2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/AutoRun2/AutoRun2.vcxproj -------------------------------------------------------------------------------- /Game/AutoRun2/AutoRun2.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/AutoRun2/AutoRun2.vcxproj.user -------------------------------------------------------------------------------- /Game/AutoRun2/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/AutoRun2/ReadMe.txt -------------------------------------------------------------------------------- /Game/AutoRun2/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/AutoRun2/StdAfx.cpp -------------------------------------------------------------------------------- /Game/AutoRun2/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/AutoRun2/StdAfx.h -------------------------------------------------------------------------------- /Game/AutoRun2/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/AutoRun2/resource.h -------------------------------------------------------------------------------- /Game/Autorun/AutoRun.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Autorun/AutoRun.aps -------------------------------------------------------------------------------- /Game/Autorun/AutoRun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Autorun/AutoRun.cpp -------------------------------------------------------------------------------- /Game/Autorun/AutoRun.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Autorun/AutoRun.dsp -------------------------------------------------------------------------------- /Game/Autorun/AutoRun.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Autorun/AutoRun.dsw -------------------------------------------------------------------------------- /Game/Autorun/AutoRun.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Autorun/AutoRun.exe -------------------------------------------------------------------------------- /Game/Autorun/AutoRun.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Autorun/AutoRun.ico -------------------------------------------------------------------------------- /Game/Autorun/AutoRun.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Autorun/AutoRun.inf -------------------------------------------------------------------------------- /Game/Autorun/AutoRun.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Autorun/AutoRun.ncb -------------------------------------------------------------------------------- /Game/Autorun/AutoRun.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Autorun/AutoRun.opt -------------------------------------------------------------------------------- /Game/Autorun/AutoRun.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Autorun/AutoRun.rc -------------------------------------------------------------------------------- /Game/Autorun/AutoRun.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Autorun/AutoRun.vcxproj -------------------------------------------------------------------------------- /Game/Autorun/AutoRun.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Autorun/AutoRun.vcxproj.user -------------------------------------------------------------------------------- /Game/Autorun/STDAFX.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Autorun/STDAFX.H -------------------------------------------------------------------------------- /Game/Autorun/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Autorun/Utils.cpp -------------------------------------------------------------------------------- /Game/Autorun/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Autorun/Utils.h -------------------------------------------------------------------------------- /Game/Autorun/mssccprj.scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Autorun/mssccprj.scc -------------------------------------------------------------------------------- /Game/Autorun/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Autorun/resource.h -------------------------------------------------------------------------------- /Game/ClientFxDLL/BaseFx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/BaseFx.cpp -------------------------------------------------------------------------------- /Game/ClientFxDLL/ClientFxDLL.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/ClientFxDLL.dsp -------------------------------------------------------------------------------- /Game/ClientFxDLL/CreateFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/CreateFX.cpp -------------------------------------------------------------------------------- /Game/ClientFxDLL/CreateFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/CreateFX.h -------------------------------------------------------------------------------- /Game/ClientFxDLL/FlareSpriteFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/FlareSpriteFX.cpp -------------------------------------------------------------------------------- /Game/ClientFxDLL/FlareSpriteFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/FlareSpriteFX.h -------------------------------------------------------------------------------- /Game/ClientFxDLL/LTBbouncychunkfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/LTBbouncychunkfx.h -------------------------------------------------------------------------------- /Game/ClientFxDLL/ParticleSystemFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/ParticleSystemFX.h -------------------------------------------------------------------------------- /Game/ClientFxDLL/bouncychunkfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/bouncychunkfx.cpp -------------------------------------------------------------------------------- /Game/ClientFxDLL/bouncychunkfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/bouncychunkfx.h -------------------------------------------------------------------------------- /Game/ClientFxDLL/camjitterfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/camjitterfx.cpp -------------------------------------------------------------------------------- /Game/ClientFxDLL/camjitterfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/camjitterfx.h -------------------------------------------------------------------------------- /Game/ClientFxDLL/camwobblefx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/camwobblefx.cpp -------------------------------------------------------------------------------- /Game/ClientFxDLL/camwobblefx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/camwobblefx.h -------------------------------------------------------------------------------- /Game/ClientFxDLL/clientfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/clientfx.cpp -------------------------------------------------------------------------------- /Game/ClientFxDLL/clientfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/clientfx.h -------------------------------------------------------------------------------- /Game/ClientFxDLL/cycletimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/cycletimer.cpp -------------------------------------------------------------------------------- /Game/ClientFxDLL/cycletimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/cycletimer.h -------------------------------------------------------------------------------- /Game/ClientFxDLL/dynalightfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/dynalightfx.cpp -------------------------------------------------------------------------------- /Game/ClientFxDLL/dynalightfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/dynalightfx.h -------------------------------------------------------------------------------- /Game/ClientFxDLL/fallingstufffx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/fallingstufffx.cpp -------------------------------------------------------------------------------- /Game/ClientFxDLL/fallingstufffx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/fallingstufffx.h -------------------------------------------------------------------------------- /Game/ClientFxDLL/lightningfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/lightningfx.cpp -------------------------------------------------------------------------------- /Game/ClientFxDLL/lightningfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/lightningfx.h -------------------------------------------------------------------------------- /Game/ClientFxDLL/ltbmodelfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/ltbmodelfx.cpp -------------------------------------------------------------------------------- /Game/ClientFxDLL/ltbmodelfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/ltbmodelfx.h -------------------------------------------------------------------------------- /Game/ClientFxDLL/memarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/memarray.h -------------------------------------------------------------------------------- /Game/ClientFxDLL/nullfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/nullfx.cpp -------------------------------------------------------------------------------- /Game/ClientFxDLL/nullfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/nullfx.h -------------------------------------------------------------------------------- /Game/ClientFxDLL/playsoundfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/playsoundfx.cpp -------------------------------------------------------------------------------- /Game/ClientFxDLL/playsoundfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/playsoundfx.h -------------------------------------------------------------------------------- /Game/ClientFxDLL/polyfanfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/polyfanfx.cpp -------------------------------------------------------------------------------- /Game/ClientFxDLL/polyfanfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/polyfanfx.h -------------------------------------------------------------------------------- /Game/ClientFxDLL/polytubefx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/polytubefx.cpp -------------------------------------------------------------------------------- /Game/ClientFxDLL/polytubefx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/polytubefx.h -------------------------------------------------------------------------------- /Game/ClientFxDLL/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/resource.h -------------------------------------------------------------------------------- /Game/ClientFxDLL/screentrail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/screentrail.cpp -------------------------------------------------------------------------------- /Game/ClientFxDLL/screentrail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/screentrail.h -------------------------------------------------------------------------------- /Game/ClientFxDLL/spritefx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/spritefx.cpp -------------------------------------------------------------------------------- /Game/ClientFxDLL/spritefx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/spritefx.h -------------------------------------------------------------------------------- /Game/ClientFxDLL/spritesystemfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/spritesystemfx.cpp -------------------------------------------------------------------------------- /Game/ClientFxDLL/spritesystemfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/spritesystemfx.h -------------------------------------------------------------------------------- /Game/ClientFxDLL/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/stdafx.cpp -------------------------------------------------------------------------------- /Game/ClientFxDLL/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/stdafx.h -------------------------------------------------------------------------------- /Game/ClientFxDLL/swaplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientFxDLL/swaplist.h -------------------------------------------------------------------------------- /Game/ClientRes/Shared/arrow.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientRes/Shared/arrow.cur -------------------------------------------------------------------------------- /Game/ClientRes/TO2/ClientRes.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientRes/TO2/ClientRes.dsp -------------------------------------------------------------------------------- /Game/ClientRes/TO2/ClientRes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientRes/TO2/ClientRes.h -------------------------------------------------------------------------------- /Game/ClientRes/TO2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientRes/TO2/main.cpp -------------------------------------------------------------------------------- /Game/ClientShellDLL/ClientShellShared/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | #include "StdAfx.h" 2 | -------------------------------------------------------------------------------- /Game/ClientShellDLL/TO2/HUDAir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientShellDLL/TO2/HUDAir.cpp -------------------------------------------------------------------------------- /Game/ClientShellDLL/TO2/HUDAir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientShellDLL/TO2/HUDAir.h -------------------------------------------------------------------------------- /Game/ClientShellDLL/TO2/HUDAmmo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientShellDLL/TO2/HUDAmmo.cpp -------------------------------------------------------------------------------- /Game/ClientShellDLL/TO2/HUDAmmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientShellDLL/TO2/HUDAmmo.h -------------------------------------------------------------------------------- /Game/ClientShellDLL/TO2/HUDHealth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientShellDLL/TO2/HUDHealth.h -------------------------------------------------------------------------------- /Game/ClientShellDLL/TO2/HUDHiding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientShellDLL/TO2/HUDHiding.h -------------------------------------------------------------------------------- /Game/ClientShellDLL/TO2/HUDRadio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientShellDLL/TO2/HUDRadio.h -------------------------------------------------------------------------------- /Game/ClientShellDLL/TO2/Stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "StdAfx.h" 2 | -------------------------------------------------------------------------------- /Game/ClientShellDLL/TO2/Stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientShellDLL/TO2/Stdafx.h -------------------------------------------------------------------------------- /Game/ClientShellDLL/TO2/TO2HUDMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ClientShellDLL/TO2/TO2HUDMgr.h -------------------------------------------------------------------------------- /Game/Launcher/AniButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/AniButton.cpp -------------------------------------------------------------------------------- /Game/Launcher/AniButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/AniButton.h -------------------------------------------------------------------------------- /Game/Launcher/AnimDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/AnimDlg.cpp -------------------------------------------------------------------------------- /Game/Launcher/AnimDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/AnimDlg.h -------------------------------------------------------------------------------- /Game/Launcher/BitmapCheckButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/BitmapCheckButton.cpp -------------------------------------------------------------------------------- /Game/Launcher/BitmapCheckButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/BitmapCheckButton.h -------------------------------------------------------------------------------- /Game/Launcher/ButtonEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/ButtonEx.cpp -------------------------------------------------------------------------------- /Game/Launcher/ButtonEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/ButtonEx.h -------------------------------------------------------------------------------- /Game/Launcher/CustomizeDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/CustomizeDlg.cpp -------------------------------------------------------------------------------- /Game/Launcher/CustomizeDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/CustomizeDlg.h -------------------------------------------------------------------------------- /Game/Launcher/DetailSettingsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/DetailSettingsDlg.cpp -------------------------------------------------------------------------------- /Game/Launcher/DetailSettingsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/DetailSettingsDlg.h -------------------------------------------------------------------------------- /Game/Launcher/DisplayDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/DisplayDlg.cpp -------------------------------------------------------------------------------- /Game/Launcher/DisplayDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/DisplayDlg.h -------------------------------------------------------------------------------- /Game/Launcher/DisplayMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/DisplayMgr.cpp -------------------------------------------------------------------------------- /Game/Launcher/DisplayMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/DisplayMgr.h -------------------------------------------------------------------------------- /Game/Launcher/DlgEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/DlgEx.cpp -------------------------------------------------------------------------------- /Game/Launcher/DlgEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/DlgEx.h -------------------------------------------------------------------------------- /Game/Launcher/EditEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/EditEx.cpp -------------------------------------------------------------------------------- /Game/Launcher/EditEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/EditEx.h -------------------------------------------------------------------------------- /Game/Launcher/Launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/Launcher.cpp -------------------------------------------------------------------------------- /Game/Launcher/Launcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/Launcher.h -------------------------------------------------------------------------------- /Game/Launcher/LauncherDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/LauncherDlg.cpp -------------------------------------------------------------------------------- /Game/Launcher/LauncherDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/LauncherDlg.h -------------------------------------------------------------------------------- /Game/Launcher/MessageBoxDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/MessageBoxDlg.cpp -------------------------------------------------------------------------------- /Game/Launcher/MessageBoxDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/MessageBoxDlg.h -------------------------------------------------------------------------------- /Game/Launcher/MoveDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/MoveDlg.cpp -------------------------------------------------------------------------------- /Game/Launcher/MoveDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/MoveDlg.h -------------------------------------------------------------------------------- /Game/Launcher/MultiplayerDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/MultiplayerDlg.cpp -------------------------------------------------------------------------------- /Game/Launcher/MultiplayerDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/MultiplayerDlg.h -------------------------------------------------------------------------------- /Game/Launcher/OptionsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/OptionsDlg.cpp -------------------------------------------------------------------------------- /Game/Launcher/OptionsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/OptionsDlg.h -------------------------------------------------------------------------------- /Game/Launcher/PlaySound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/PlaySound.h -------------------------------------------------------------------------------- /Game/Launcher/RezFind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/RezFind.cpp -------------------------------------------------------------------------------- /Game/Launcher/RezFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/RezFind.h -------------------------------------------------------------------------------- /Game/Launcher/StaticEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/StaticEx.cpp -------------------------------------------------------------------------------- /Game/Launcher/StaticEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/StaticEx.h -------------------------------------------------------------------------------- /Game/Launcher/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/StdAfx.cpp -------------------------------------------------------------------------------- /Game/Launcher/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/StdAfx.h -------------------------------------------------------------------------------- /Game/Launcher/TO2/Launcher.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/TO2/Launcher.dsp -------------------------------------------------------------------------------- /Game/Launcher/TO2/Launcher.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/TO2/Launcher.vcxproj -------------------------------------------------------------------------------- /Game/Launcher/TO2/RES/Launcher.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/TO2/RES/Launcher.ico -------------------------------------------------------------------------------- /Game/Launcher/TO2/RES/Launcher.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/TO2/RES/Launcher.rc2 -------------------------------------------------------------------------------- /Game/Launcher/TO2/RES/WebHand.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/TO2/RES/WebHand.cur -------------------------------------------------------------------------------- /Game/Launcher/TO2/RES/bmp/Error.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/TO2/RES/bmp/Error.bmp -------------------------------------------------------------------------------- /Game/Launcher/TO2/RES/snd/Click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/TO2/RES/snd/Click.wav -------------------------------------------------------------------------------- /Game/Launcher/TO2/RES/snd/Intro.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/TO2/RES/snd/Intro.wav -------------------------------------------------------------------------------- /Game/Launcher/TO2/RES/snd/type1.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/TO2/RES/snd/type1.WAV -------------------------------------------------------------------------------- /Game/Launcher/TO2/RES/snd/type2.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/TO2/RES/snd/type2.WAV -------------------------------------------------------------------------------- /Game/Launcher/TO2/RES/snd/type3.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/TO2/RES/snd/type3.WAV -------------------------------------------------------------------------------- /Game/Launcher/TO2/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/TO2/resource.h -------------------------------------------------------------------------------- /Game/Launcher/TextCheckBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/TextCheckBox.cpp -------------------------------------------------------------------------------- /Game/Launcher/TextCheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/TextCheckBox.h -------------------------------------------------------------------------------- /Game/Launcher/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/Utils.cpp -------------------------------------------------------------------------------- /Game/Launcher/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Launcher/Utils.h -------------------------------------------------------------------------------- /Game/Libs/LTGUIMgr/ltguibutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Libs/LTGUIMgr/ltguibutton.cpp -------------------------------------------------------------------------------- /Game/Libs/LTGUIMgr/ltguibutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Libs/LTGUIMgr/ltguibutton.h -------------------------------------------------------------------------------- /Game/Libs/LTGUIMgr/ltguictrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Libs/LTGUIMgr/ltguictrl.cpp -------------------------------------------------------------------------------- /Game/Libs/LTGUIMgr/ltguictrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Libs/LTGUIMgr/ltguictrl.h -------------------------------------------------------------------------------- /Game/Libs/LTGUIMgr/ltguicyclectrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Libs/LTGUIMgr/ltguicyclectrl.h -------------------------------------------------------------------------------- /Game/Libs/LTGUIMgr/ltguieditctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Libs/LTGUIMgr/ltguieditctrl.h -------------------------------------------------------------------------------- /Game/Libs/LTGUIMgr/ltguiframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Libs/LTGUIMgr/ltguiframe.cpp -------------------------------------------------------------------------------- /Game/Libs/LTGUIMgr/ltguiframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Libs/LTGUIMgr/ltguiframe.h -------------------------------------------------------------------------------- /Game/Libs/LTGUIMgr/ltguilargetext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Libs/LTGUIMgr/ltguilargetext.h -------------------------------------------------------------------------------- /Game/Libs/LTGUIMgr/ltguilistctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Libs/LTGUIMgr/ltguilistctrl.h -------------------------------------------------------------------------------- /Game/Libs/LTGUIMgr/ltguimgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Libs/LTGUIMgr/ltguimgr.h -------------------------------------------------------------------------------- /Game/Libs/LTGUIMgr/ltguimgr60.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Libs/LTGUIMgr/ltguimgr60.dsp -------------------------------------------------------------------------------- /Game/Libs/LTGUIMgr/ltguislider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Libs/LTGUIMgr/ltguislider.cpp -------------------------------------------------------------------------------- /Game/Libs/LTGUIMgr/ltguislider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Libs/LTGUIMgr/ltguislider.h -------------------------------------------------------------------------------- /Game/Libs/LTGUIMgr/ltguitoggle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Libs/LTGUIMgr/ltguitoggle.cpp -------------------------------------------------------------------------------- /Game/Libs/LTGUIMgr/ltguitoggle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Libs/LTGUIMgr/ltguitoggle.h -------------------------------------------------------------------------------- /Game/Libs/LTGUIMgr/ltguiwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Libs/LTGUIMgr/ltguiwindow.cpp -------------------------------------------------------------------------------- /Game/Libs/LTGUIMgr/ltguiwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Libs/LTGUIMgr/ltguiwindow.h -------------------------------------------------------------------------------- /Game/Libs/LTGUIMgr/ltquaduvutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Libs/LTGUIMgr/ltquaduvutils.h -------------------------------------------------------------------------------- /Game/Libs/LTGUIMgr/vkdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Libs/LTGUIMgr/vkdefs.h -------------------------------------------------------------------------------- /Game/Libs/ServerDir/IServerDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Libs/ServerDir/IServerDir.h -------------------------------------------------------------------------------- /Game/ObjectDLL/ObjectShared/AI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ObjectDLL/ObjectShared/AI.cpp -------------------------------------------------------------------------------- /Game/ObjectDLL/ObjectShared/AI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ObjectDLL/ObjectShared/AI.h -------------------------------------------------------------------------------- /Game/ObjectDLL/ObjectShared/Alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ObjectDLL/ObjectShared/Alarm.h -------------------------------------------------------------------------------- /Game/ObjectDLL/ObjectShared/AnimationLex.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "AnimationLex.o" -------------------------------------------------------------------------------- /Game/ObjectDLL/ObjectShared/AnimationParse.cpp: -------------------------------------------------------------------------------- 1 | #include "AnimationParse.o" -------------------------------------------------------------------------------- /Game/ObjectDLL/ObjectShared/Body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ObjectDLL/ObjectShared/Body.h -------------------------------------------------------------------------------- /Game/ObjectDLL/ObjectShared/Door.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ObjectDLL/ObjectShared/Door.h -------------------------------------------------------------------------------- /Game/ObjectDLL/ObjectShared/Fire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ObjectDLL/ObjectShared/Fire.h -------------------------------------------------------------------------------- /Game/ObjectDLL/ObjectShared/Group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ObjectDLL/ObjectShared/Group.h -------------------------------------------------------------------------------- /Game/ObjectDLL/ObjectShared/Key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ObjectDLL/ObjectShared/Key.cpp -------------------------------------------------------------------------------- /Game/ObjectDLL/ObjectShared/Key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ObjectDLL/ObjectShared/Key.h -------------------------------------------------------------------------------- /Game/ObjectDLL/ObjectShared/Lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ObjectDLL/ObjectShared/Lock.h -------------------------------------------------------------------------------- /Game/ObjectDLL/ObjectShared/Mine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ObjectDLL/ObjectShared/Mine.h -------------------------------------------------------------------------------- /Game/ObjectDLL/ObjectShared/PSets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ObjectDLL/ObjectShared/PSets.h -------------------------------------------------------------------------------- /Game/ObjectDLL/ObjectShared/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ObjectDLL/ObjectShared/Point.h -------------------------------------------------------------------------------- /Game/ObjectDLL/ObjectShared/Prop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ObjectDLL/ObjectShared/Prop.h -------------------------------------------------------------------------------- /Game/ObjectDLL/ObjectShared/Stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "StdAfx.h" 2 | 3 | 4 | -------------------------------------------------------------------------------- /Game/ObjectDLL/ObjectShared/Steam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ObjectDLL/ObjectShared/Steam.h -------------------------------------------------------------------------------- /Game/ObjectDLL/TO2/GlobalsInit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ObjectDLL/TO2/GlobalsInit.cpp -------------------------------------------------------------------------------- /Game/ObjectDLL/TO2/Object.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ObjectDLL/TO2/Object.dsp -------------------------------------------------------------------------------- /Game/ObjectDLL/TO2/Object.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ObjectDLL/TO2/Object.vcxproj -------------------------------------------------------------------------------- /Game/ObjectDLL/TO2/Stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "StdAfx.h" 2 | 3 | 4 | -------------------------------------------------------------------------------- /Game/ObjectDLL/TO2/Stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ObjectDLL/TO2/Stdafx.h -------------------------------------------------------------------------------- /Game/ServerApp/SelectConfigDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ServerApp/SelectConfigDlg.cpp -------------------------------------------------------------------------------- /Game/ServerApp/SelectConfigDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ServerApp/SelectConfigDlg.h -------------------------------------------------------------------------------- /Game/ServerApp/ServerApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ServerApp/ServerApp.cpp -------------------------------------------------------------------------------- /Game/ServerApp/ServerApp.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ServerApp/ServerApp.dsp -------------------------------------------------------------------------------- /Game/ServerApp/ServerApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ServerApp/ServerApp.h -------------------------------------------------------------------------------- /Game/ServerApp/ServerApp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ServerApp/ServerApp.vcxproj -------------------------------------------------------------------------------- /Game/ServerApp/ServerDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ServerApp/ServerDlg.cpp -------------------------------------------------------------------------------- /Game/ServerApp/ServerDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ServerApp/ServerDlg.h -------------------------------------------------------------------------------- /Game/ServerApp/Splash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ServerApp/Splash.cpp -------------------------------------------------------------------------------- /Game/ServerApp/Splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ServerApp/Splash.h -------------------------------------------------------------------------------- /Game/ServerApp/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ServerApp/StdAfx.cpp -------------------------------------------------------------------------------- /Game/ServerApp/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ServerApp/StdAfx.h -------------------------------------------------------------------------------- /Game/ServerApp/res/ServerApp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ServerApp/res/ServerApp.ico -------------------------------------------------------------------------------- /Game/ServerApp/res/ServerApp.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ServerApp/res/ServerApp.rc2 -------------------------------------------------------------------------------- /Game/ServerApp/res/selected.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ServerApp/res/selected.ico -------------------------------------------------------------------------------- /Game/ServerApp/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ServerApp/resource.h -------------------------------------------------------------------------------- /Game/ServerRes/TO2/MAIN.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ServerRes/TO2/MAIN.CPP -------------------------------------------------------------------------------- /Game/ServerRes/TO2/ServerRes.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ServerRes/TO2/ServerRes.dsp -------------------------------------------------------------------------------- /Game/ServerRes/TO2/ServerRes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ServerRes/TO2/ServerRes.h -------------------------------------------------------------------------------- /Game/ServerRes/TO2/ServerRes.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/ServerRes/TO2/ServerRes.rc -------------------------------------------------------------------------------- /Game/Shared/ActivateTypeMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/ActivateTypeMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/ActivateTypeMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/ActivateTypeMgr.h -------------------------------------------------------------------------------- /Game/Shared/ActivationData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/ActivationData.h -------------------------------------------------------------------------------- /Game/Shared/Animator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/Animator.cpp -------------------------------------------------------------------------------- /Game/Shared/Animator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/Animator.h -------------------------------------------------------------------------------- /Game/Shared/AssertMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/AssertMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/AssertMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/AssertMgr.h -------------------------------------------------------------------------------- /Game/Shared/AttachButeMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/AttachButeMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/AttachButeMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/AttachButeMgr.h -------------------------------------------------------------------------------- /Game/Shared/AutoMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/AutoMessage.h -------------------------------------------------------------------------------- /Game/Shared/BankedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/BankedList.h -------------------------------------------------------------------------------- /Game/Shared/BankedList_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/BankedList_impl.h -------------------------------------------------------------------------------- /Game/Shared/BaseFx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/BaseFx.h -------------------------------------------------------------------------------- /Game/Shared/ButeListReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/ButeListReader.cpp -------------------------------------------------------------------------------- /Game/Shared/ButeListReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/ButeListReader.h -------------------------------------------------------------------------------- /Game/Shared/CRC32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/CRC32.cpp -------------------------------------------------------------------------------- /Game/Shared/CRC32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/CRC32.h -------------------------------------------------------------------------------- /Game/Shared/CharacterAlignment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/CharacterAlignment.cpp -------------------------------------------------------------------------------- /Game/Shared/CharacterAlignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/CharacterAlignment.h -------------------------------------------------------------------------------- /Game/Shared/CheatDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/CheatDefs.h -------------------------------------------------------------------------------- /Game/Shared/ClientServerShared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/ClientServerShared.cpp -------------------------------------------------------------------------------- /Game/Shared/ClientServerShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/ClientServerShared.h -------------------------------------------------------------------------------- /Game/Shared/CommandIDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/CommandIDs.h -------------------------------------------------------------------------------- /Game/Shared/CommonUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/CommonUtilities.cpp -------------------------------------------------------------------------------- /Game/Shared/CommonUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/CommonUtilities.h -------------------------------------------------------------------------------- /Game/Shared/ContainerCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/ContainerCodes.h -------------------------------------------------------------------------------- /Game/Shared/Creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/Creator.h -------------------------------------------------------------------------------- /Game/Shared/DamageTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/DamageTypes.cpp -------------------------------------------------------------------------------- /Game/Shared/DamageTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/DamageTypes.h -------------------------------------------------------------------------------- /Game/Shared/DamageTypesEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/DamageTypesEnum.h -------------------------------------------------------------------------------- /Game/Shared/DebrisMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/DebrisMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/DebrisMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/DebrisMgr.h -------------------------------------------------------------------------------- /Game/Shared/DebugLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/DebugLine.cpp -------------------------------------------------------------------------------- /Game/Shared/DebugLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/DebugLine.h -------------------------------------------------------------------------------- /Game/Shared/DebugMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/DebugMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/DebugMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/DebugMgr.h -------------------------------------------------------------------------------- /Game/Shared/DebugNew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/DebugNew.cpp -------------------------------------------------------------------------------- /Game/Shared/DebugNew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/DebugNew.h -------------------------------------------------------------------------------- /Game/Shared/DebugNew_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/DebugNew_impl.h -------------------------------------------------------------------------------- /Game/Shared/FXButeMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/FXButeMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/FXButeMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/FXButeMgr.h -------------------------------------------------------------------------------- /Game/Shared/FXProp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/FXProp.h -------------------------------------------------------------------------------- /Game/Shared/FXStructs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/FXStructs.cpp -------------------------------------------------------------------------------- /Game/Shared/FXStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/FXStructs.h -------------------------------------------------------------------------------- /Game/Shared/Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/Factory.h -------------------------------------------------------------------------------- /Game/Shared/FastHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/FastHeap.h -------------------------------------------------------------------------------- /Game/Shared/FastList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/FastList.h -------------------------------------------------------------------------------- /Game/Shared/FastStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/FastStack.h -------------------------------------------------------------------------------- /Game/Shared/FxDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/FxDefs.h -------------------------------------------------------------------------------- /Game/Shared/FxFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/FxFlags.h -------------------------------------------------------------------------------- /Game/Shared/GadgetTargetTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/GadgetTargetTypes.h -------------------------------------------------------------------------------- /Game/Shared/GameAlloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/GameAlloc.cpp -------------------------------------------------------------------------------- /Game/Shared/GameButeMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/GameButeMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/GameButeMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/GameButeMgr.h -------------------------------------------------------------------------------- /Game/Shared/GibTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/GibTypes.h -------------------------------------------------------------------------------- /Game/Shared/GlobalMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/GlobalMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/GlobalMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/GlobalMgr.h -------------------------------------------------------------------------------- /Game/Shared/Globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/Globals.h -------------------------------------------------------------------------------- /Game/Shared/HierarchicalButeMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/HierarchicalButeMgr.h -------------------------------------------------------------------------------- /Game/Shared/IDList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/IDList.h -------------------------------------------------------------------------------- /Game/Shared/ImpactType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/ImpactType.h -------------------------------------------------------------------------------- /Game/Shared/KeyMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/KeyMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/KeyMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/KeyMgr.h -------------------------------------------------------------------------------- /Game/Shared/LTPoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/LTPoly.h -------------------------------------------------------------------------------- /Game/Shared/Lang/DE/ResShared.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/Lang/DE/ResShared.rc -------------------------------------------------------------------------------- /Game/Shared/Lang/EN/ResShared.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/Lang/EN/ResShared.rc -------------------------------------------------------------------------------- /Game/Shared/Lang/ES/ResShared.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/Lang/ES/ResShared.rc -------------------------------------------------------------------------------- /Game/Shared/Lang/FR/ResShared.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/Lang/FR/ResShared.rc -------------------------------------------------------------------------------- /Game/Shared/Lang/IT/ResShared.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/Lang/IT/ResShared.rc -------------------------------------------------------------------------------- /Game/Shared/MissionButeMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/MissionButeMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/MissionButeMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/MissionButeMgr.h -------------------------------------------------------------------------------- /Game/Shared/ModelButeMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/ModelButeMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/ModelButeMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/ModelButeMgr.h -------------------------------------------------------------------------------- /Game/Shared/MsgIDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/MsgIDs.h -------------------------------------------------------------------------------- /Game/Shared/NetDefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/NetDefs.cpp -------------------------------------------------------------------------------- /Game/Shared/NetDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/NetDefs.h -------------------------------------------------------------------------------- /Game/Shared/ParsedMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/ParsedMsg.cpp -------------------------------------------------------------------------------- /Game/Shared/ParsedMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/ParsedMsg.h -------------------------------------------------------------------------------- /Game/Shared/PlayerShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/PlayerShared.h -------------------------------------------------------------------------------- /Game/Shared/ProfileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/ProfileUtils.cpp -------------------------------------------------------------------------------- /Game/Shared/ProfileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/ProfileUtils.h -------------------------------------------------------------------------------- /Game/Shared/RadarTypeMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/RadarTypeMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/RadarTypeMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/RadarTypeMgr.h -------------------------------------------------------------------------------- /Game/Shared/ResShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/ResShared.h -------------------------------------------------------------------------------- /Game/Shared/SFXMsgIds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SFXMsgIds.h -------------------------------------------------------------------------------- /Game/Shared/SaveLoadMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SaveLoadMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/SaveLoadMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SaveLoadMgr.h -------------------------------------------------------------------------------- /Game/Shared/ScmdConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/ScmdConsole.cpp -------------------------------------------------------------------------------- /Game/Shared/ScmdConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/ScmdConsole.h -------------------------------------------------------------------------------- /Game/Shared/ScmdShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/ScmdShared.h -------------------------------------------------------------------------------- /Game/Shared/SearchItemMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SearchItemMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/SearchItemMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SearchItemMgr.h -------------------------------------------------------------------------------- /Game/Shared/SharedBaseFXStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SharedBaseFXStructs.h -------------------------------------------------------------------------------- /Game/Shared/SharedFXStructs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SharedFXStructs.cpp -------------------------------------------------------------------------------- /Game/Shared/SharedFXStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SharedFXStructs.h -------------------------------------------------------------------------------- /Game/Shared/SharedMission.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SharedMission.cpp -------------------------------------------------------------------------------- /Game/Shared/SharedMission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SharedMission.h -------------------------------------------------------------------------------- /Game/Shared/SharedMovement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SharedMovement.cpp -------------------------------------------------------------------------------- /Game/Shared/SharedMovement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SharedMovement.h -------------------------------------------------------------------------------- /Game/Shared/SharedScoring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SharedScoring.cpp -------------------------------------------------------------------------------- /Game/Shared/SharedScoring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SharedScoring.h -------------------------------------------------------------------------------- /Game/Shared/SkillsButeMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SkillsButeMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/SkillsButeMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SkillsButeMgr.h -------------------------------------------------------------------------------- /Game/Shared/SoundButeMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SoundButeMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/SoundButeMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SoundButeMgr.h -------------------------------------------------------------------------------- /Game/Shared/SoundFilterMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SoundFilterMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/SoundFilterMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SoundFilterMgr.h -------------------------------------------------------------------------------- /Game/Shared/SoundMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SoundMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/SoundMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SoundMgr.h -------------------------------------------------------------------------------- /Game/Shared/SoundTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SoundTypes.h -------------------------------------------------------------------------------- /Game/Shared/StandardCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/StandardCreator.h -------------------------------------------------------------------------------- /Game/Shared/SurfaceDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SurfaceDefs.h -------------------------------------------------------------------------------- /Game/Shared/SurfaceFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SurfaceFunctions.cpp -------------------------------------------------------------------------------- /Game/Shared/SurfaceFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SurfaceFunctions.h -------------------------------------------------------------------------------- /Game/Shared/SurfaceMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SurfaceMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/SurfaceMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/SurfaceMgr.h -------------------------------------------------------------------------------- /Game/Shared/TO2/TO2MissionButeMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/TO2/TO2MissionButeMgr.h -------------------------------------------------------------------------------- /Game/Shared/TO2/TO2VersionMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/TO2/TO2VersionMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/TO2/TO2VersionMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/TO2/TO2VersionMgr.h -------------------------------------------------------------------------------- /Game/Shared/TeamMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/TeamMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/TeamMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/TeamMgr.h -------------------------------------------------------------------------------- /Game/Shared/TemplateList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/TemplateList.cpp -------------------------------------------------------------------------------- /Game/Shared/TemplateList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/TemplateList.h -------------------------------------------------------------------------------- /Game/Shared/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/Timer.h -------------------------------------------------------------------------------- /Game/Shared/TrackedNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/TrackedNode.cpp -------------------------------------------------------------------------------- /Game/Shared/TrackedNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/TrackedNode.h -------------------------------------------------------------------------------- /Game/Shared/TrackedNodeContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/TrackedNodeContext.cpp -------------------------------------------------------------------------------- /Game/Shared/TrackedNodeContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/TrackedNodeContext.h -------------------------------------------------------------------------------- /Game/Shared/TrackedNodeMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/TrackedNodeMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/TrackedNodeMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/TrackedNodeMgr.h -------------------------------------------------------------------------------- /Game/Shared/TriggerTypeMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/TriggerTypeMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/TriggerTypeMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/TriggerTypeMgr.h -------------------------------------------------------------------------------- /Game/Shared/UberAssert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/UberAssert.cpp -------------------------------------------------------------------------------- /Game/Shared/UberAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/UberAssert.h -------------------------------------------------------------------------------- /Game/Shared/VersionMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/VersionMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/VersionMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/VersionMgr.h -------------------------------------------------------------------------------- /Game/Shared/WaveFn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/WaveFn.cpp -------------------------------------------------------------------------------- /Game/Shared/WaveFn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/WaveFn.h -------------------------------------------------------------------------------- /Game/Shared/WeaponFXTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/WeaponFXTypes.h -------------------------------------------------------------------------------- /Game/Shared/WeaponMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/WeaponMgr.cpp -------------------------------------------------------------------------------- /Game/Shared/WeaponMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/WeaponMgr.h -------------------------------------------------------------------------------- /Game/Shared/WinUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/WinUtil.cpp -------------------------------------------------------------------------------- /Game/Shared/WinUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/WinUtil.h -------------------------------------------------------------------------------- /Game/Shared/linklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/linklist.h -------------------------------------------------------------------------------- /Game/Shared/stacktrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/stacktrace.cpp -------------------------------------------------------------------------------- /Game/Shared/stacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/Shared/stacktrace.h -------------------------------------------------------------------------------- /Game/Shared/unistd.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Game/TO2-Game.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/TO2-Game.sln -------------------------------------------------------------------------------- /Game/TO2.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/TO2.dsw -------------------------------------------------------------------------------- /Game/TO2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/TO2.sln -------------------------------------------------------------------------------- /Game/_after_build_debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/_after_build_debug.bat -------------------------------------------------------------------------------- /Game/_server_dir_debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/_server_dir_debug.bat -------------------------------------------------------------------------------- /Game/bison.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/bison.exe -------------------------------------------------------------------------------- /Game/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/build.bat -------------------------------------------------------------------------------- /Game/flex.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/flex.exe -------------------------------------------------------------------------------- /Game/game.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/game.dsp -------------------------------------------------------------------------------- /Game/game.mak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Game/game.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/game.vcxproj -------------------------------------------------------------------------------- /Game/game.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/game.vcxproj.filters -------------------------------------------------------------------------------- /Game/game.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Game/game.vcxproj.user -------------------------------------------------------------------------------- /Libs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Libs.txt -------------------------------------------------------------------------------- /Tools/lithrez.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/Tools/lithrez.exe -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /libs/ButeMgr/ButeMgr.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/ButeMgr/ButeMgr.dsp -------------------------------------------------------------------------------- /libs/ButeMgr/ButeMgr.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/ButeMgr/ButeMgr.vcxproj -------------------------------------------------------------------------------- /libs/ButeMgr/ButeMgr.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/ButeMgr/ButeMgr.vcxproj.user -------------------------------------------------------------------------------- /libs/ButeMgr/ButeMgrMfcDll.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/ButeMgr/ButeMgrMfcDll.dsp -------------------------------------------------------------------------------- /libs/ButeMgr/ButeMgrMfcDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/ButeMgr/ButeMgrMfcDll.vcxproj -------------------------------------------------------------------------------- /libs/ButeMgr/arange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/ButeMgr/arange.cpp -------------------------------------------------------------------------------- /libs/ButeMgr/arange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/ButeMgr/arange.h -------------------------------------------------------------------------------- /libs/ButeMgr/avector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/ButeMgr/avector.cpp -------------------------------------------------------------------------------- /libs/ButeMgr/avector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/ButeMgr/avector.h -------------------------------------------------------------------------------- /libs/ButeMgr/butemgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/ButeMgr/butemgr.cpp -------------------------------------------------------------------------------- /libs/ButeMgr/butemgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/ButeMgr/butemgr.h -------------------------------------------------------------------------------- /libs/ButeMgr/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /libs/ButeMgr/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/ButeMgr/stdafx.h -------------------------------------------------------------------------------- /libs/CryptMgr/CryptMgrMfcDll.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/CryptMgr/CryptMgrMfcDll.dsp -------------------------------------------------------------------------------- /libs/CryptMgr/blowfish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/CryptMgr/blowfish.cpp -------------------------------------------------------------------------------- /libs/CryptMgr/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/CryptMgr/blowfish.h -------------------------------------------------------------------------------- /libs/CryptMgr/cryptmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/CryptMgr/cryptmgr.cpp -------------------------------------------------------------------------------- /libs/CryptMgr/cryptmgr.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/CryptMgr/cryptmgr.dsp -------------------------------------------------------------------------------- /libs/CryptMgr/cryptmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/CryptMgr/cryptmgr.h -------------------------------------------------------------------------------- /libs/CryptMgr/cryptmgr.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/CryptMgr/cryptmgr.vcxproj -------------------------------------------------------------------------------- /libs/CryptMgr/cryptmgr.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/CryptMgr/cryptmgr.vcxproj.user -------------------------------------------------------------------------------- /libs/JServerDir/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/JServerDir/Exceptions.h -------------------------------------------------------------------------------- /libs/JServerDir/Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/JServerDir/Helpers.h -------------------------------------------------------------------------------- /libs/JServerDir/ISocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/JServerDir/ISocket.h -------------------------------------------------------------------------------- /libs/JServerDir/JServerDir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/JServerDir/JServerDir.cpp -------------------------------------------------------------------------------- /libs/JServerDir/JServerDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/JServerDir/JServerDir.h -------------------------------------------------------------------------------- /libs/JServerDir/JServerDir.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/JServerDir/JServerDir.vcxproj -------------------------------------------------------------------------------- /libs/JServerDir/Peer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/JServerDir/Peer.cpp -------------------------------------------------------------------------------- /libs/JServerDir/Peer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/JServerDir/Peer.h -------------------------------------------------------------------------------- /libs/JServerDir/TCPSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/JServerDir/TCPSocket.cpp -------------------------------------------------------------------------------- /libs/JServerDir/TCPSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/JServerDir/TCPSocket.h -------------------------------------------------------------------------------- /libs/JServerDir/UDPSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/JServerDir/UDPSocket.cpp -------------------------------------------------------------------------------- /libs/JServerDir/UDPSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/JServerDir/UDPSocket.h -------------------------------------------------------------------------------- /libs/JServerDir/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/JServerDir/dllmain.cpp -------------------------------------------------------------------------------- /libs/JServerDir/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/JServerDir/framework.h -------------------------------------------------------------------------------- /libs/JServerDir/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/JServerDir/pch.cpp -------------------------------------------------------------------------------- /libs/JServerDir/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/JServerDir/pch.h -------------------------------------------------------------------------------- /libs/MFCStub/MFCStub60.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/MFCStub/MFCStub60.dsp -------------------------------------------------------------------------------- /libs/MFCStub/MFCStub60.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/MFCStub/MFCStub60.vcxproj -------------------------------------------------------------------------------- /libs/MFCStub/MFCStub60.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/MFCStub/MFCStub60.vcxproj.user -------------------------------------------------------------------------------- /libs/MFCStub/mfcs_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/MFCStub/mfcs_misc.h -------------------------------------------------------------------------------- /libs/MFCStub/mfcs_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/MFCStub/mfcs_point.cpp -------------------------------------------------------------------------------- /libs/MFCStub/mfcs_point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/MFCStub/mfcs_point.h -------------------------------------------------------------------------------- /libs/MFCStub/mfcs_rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/MFCStub/mfcs_rect.cpp -------------------------------------------------------------------------------- /libs/MFCStub/mfcs_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/MFCStub/mfcs_rect.h -------------------------------------------------------------------------------- /libs/MFCStub/mfcs_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/MFCStub/mfcs_string.cpp -------------------------------------------------------------------------------- /libs/MFCStub/mfcs_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/MFCStub/mfcs_string.h -------------------------------------------------------------------------------- /libs/MFCStub/mfcs_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/MFCStub/mfcs_types.h -------------------------------------------------------------------------------- /libs/MFCStub/mfcstub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/MFCStub/mfcstub.cpp -------------------------------------------------------------------------------- /libs/MFCStub/mfcstub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/MFCStub/mfcstub.h -------------------------------------------------------------------------------- /libs/MFCStub/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/MFCStub/stdafx.h -------------------------------------------------------------------------------- /libs/RegMgr/regmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/RegMgr/regmgr.cpp -------------------------------------------------------------------------------- /libs/RegMgr/regmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/RegMgr/regmgr.h -------------------------------------------------------------------------------- /libs/RegMgr/regmgr60.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/RegMgr/regmgr60.dsp -------------------------------------------------------------------------------- /libs/RegMgr/regmgr60.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/RegMgr/regmgr60.dsw -------------------------------------------------------------------------------- /libs/RegMgr/regmgr60.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/RegMgr/regmgr60.vcxproj -------------------------------------------------------------------------------- /libs/RegMgr/regmgr60.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/RegMgr/regmgr60.vcxproj.user -------------------------------------------------------------------------------- /libs/RegMgr32/STDAFX.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/RegMgr32/STDAFX.H -------------------------------------------------------------------------------- /libs/RegMgr32/regmgr32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/RegMgr32/regmgr32.cpp -------------------------------------------------------------------------------- /libs/RegMgr32/regmgr32.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/RegMgr32/regmgr32.dsp -------------------------------------------------------------------------------- /libs/RegMgr32/regmgr32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/RegMgr32/regmgr32.h -------------------------------------------------------------------------------- /libs/RegMgr32/regmgr32.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/RegMgr32/regmgr32.vcxproj -------------------------------------------------------------------------------- /libs/RegMgr32/regmgr32.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/RegMgr32/regmgr32.vcxproj.user -------------------------------------------------------------------------------- /libs/SDL2-2.0.12/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/SDL2-2.0.12/BUGS.txt -------------------------------------------------------------------------------- /libs/SDL2-2.0.12/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/SDL2-2.0.12/COPYING.txt -------------------------------------------------------------------------------- /libs/SDL2-2.0.12/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/SDL2-2.0.12/README-SDL.txt -------------------------------------------------------------------------------- /libs/SDL2-2.0.12/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/SDL2-2.0.12/README.txt -------------------------------------------------------------------------------- /libs/SDL2-2.0.12/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/SDL2-2.0.12/WhatsNew.txt -------------------------------------------------------------------------------- /libs/SDL2-2.0.12/docs/README-hg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/SDL2-2.0.12/docs/README-hg.md -------------------------------------------------------------------------------- /libs/SDL2-2.0.12/docs/README-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/SDL2-2.0.12/docs/README-ios.md -------------------------------------------------------------------------------- /libs/SDL2-2.0.12/docs/README-psp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/SDL2-2.0.12/docs/README-psp.md -------------------------------------------------------------------------------- /libs/SDL2-2.0.12/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/SDL2-2.0.12/docs/README.md -------------------------------------------------------------------------------- /libs/SDL2-2.0.12/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/SDL2-2.0.12/docs/doxyfile -------------------------------------------------------------------------------- /libs/SDL2-2.0.12/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/SDL2-2.0.12/include/SDL.h -------------------------------------------------------------------------------- /libs/SDL2-2.0.12/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/SDL2-2.0.12/include/SDL_bits.h -------------------------------------------------------------------------------- /libs/SDL2-2.0.12/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/SDL2-2.0.12/include/SDL_egl.h -------------------------------------------------------------------------------- /libs/SDL2-2.0.12/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/SDL2-2.0.12/include/SDL_log.h -------------------------------------------------------------------------------- /libs/SDL2-2.0.12/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/SDL2-2.0.12/include/SDL_main.h -------------------------------------------------------------------------------- /libs/SDL2-2.0.12/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/SDL2-2.0.12/include/SDL_name.h -------------------------------------------------------------------------------- /libs/SDL2-2.0.12/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/SDL2-2.0.12/include/SDL_quit.h -------------------------------------------------------------------------------- /libs/SDL2-2.0.12/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/SDL2-2.0.12/include/SDL_rect.h -------------------------------------------------------------------------------- /libs/STLPort-4.0/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/ChangeLog -------------------------------------------------------------------------------- /libs/STLPort-4.0/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/INSTALL -------------------------------------------------------------------------------- /libs/STLPort-4.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/README -------------------------------------------------------------------------------- /libs/STLPort-4.0/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/TODO -------------------------------------------------------------------------------- /libs/STLPort-4.0/doc/FAQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/doc/FAQ.html -------------------------------------------------------------------------------- /libs/STLPort-4.0/doc/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/doc/build.html -------------------------------------------------------------------------------- /libs/STLPort-4.0/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/doc/index.html -------------------------------------------------------------------------------- /libs/STLPort-4.0/doc/story.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/doc/story.html -------------------------------------------------------------------------------- /libs/STLPort-4.0/doc/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/doc/style.css -------------------------------------------------------------------------------- /libs/STLPort-4.0/doc/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/doc/test.html -------------------------------------------------------------------------------- /libs/STLPort-4.0/doc/thanks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/doc/thanks.html -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/MrCpp.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/MrCpp.mak -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/SCpp.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/SCpp.mak -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/bc502.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/bc502.mak -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/bcb.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/bcb.mak -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/bcb55.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/bcb55.mak -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/c_locale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/c_locale.c -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/codecvt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/codecvt.cpp -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/collate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/collate.cpp -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/complex.cpp -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/ctype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/ctype.cpp -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/ctype_w.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/ctype_w.cpp -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/cygwin.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/cygwin.mak -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/dec.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/dec.mak -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/fstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/fstream.cpp -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/gcc.mak -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/gcc7.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/gcc7.mak -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/gcc8.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/gcc8.mak -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/hpacc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/hpacc.mak -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/intel.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/intel.mak -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/ios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/ios.cpp -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/ios_w.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/ios_w.cpp -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/kai.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/kai.mak -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/locale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/locale.cpp -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/mingw32.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/mingw32.mak -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/num_get.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/num_get.cpp -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/num_put.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/num_put.cpp -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/num_put.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/num_put.h -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/sources -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/sstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/sstream.cpp -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/stlport.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/stlport.rc -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/string.cpp -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/sunpro.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/sunpro.mak -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/sunpro6.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/sunpro6.mak -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/test.cpp -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/uint64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/uint64.h -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/vc5.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/vc5.mak -------------------------------------------------------------------------------- /libs/STLPort-4.0/src/vc6.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/src/vc6.mak -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/bitset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/bitset -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/cassert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/cassert -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/cctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/cctype -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/cerrno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/cerrno -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/cfloat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/cfloat -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/climits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/climits -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/clocale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/clocale -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/cmath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/cmath -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/complex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/complex -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/config/new_compiler/confdefs.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/csetjmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/csetjmp -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/csignal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/csignal -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/cstdarg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/cstdarg -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/cstddef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/cstddef -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/cstdio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/cstdio -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/cstdlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/cstdlib -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/cstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/cstring -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/ctime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/ctime -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/ctype.h -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/cwchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/cwchar -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/cwctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/cwctype -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/deque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/deque -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/fstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/fstream -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/iomanip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/iomanip -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/ios -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/ios.h -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/iosfwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/iosfwd -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/istream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/istream -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/limits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/limits -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/list -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/locale -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/map -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/math.h -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/mem.h -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/memory -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/mmemory.h: -------------------------------------------------------------------------------- 1 | CAUUSE A SYNTAX ERROR 2 | -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/new -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/new.h -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/numeric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/numeric -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/ostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/ostream -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/queue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/queue -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/rope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/rope -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/set -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/slist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/slist -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/sstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/sstream -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/stack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/stack -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/stdio.h -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/stl/_exception.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/stl/_relops_template.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/string -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/time.h -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/utility: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/utility -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/vector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/vector -------------------------------------------------------------------------------- /libs/STLPort-4.0/stlport/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/stlport/wchar.h -------------------------------------------------------------------------------- /libs/STLPort-4.0/test/eh/Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/test/eh/Tests.h -------------------------------------------------------------------------------- /libs/STLPort-4.0/test/eh/bcb.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/test/eh/bcb.mak -------------------------------------------------------------------------------- /libs/STLPort-4.0/test/eh/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/test/eh/export -------------------------------------------------------------------------------- /libs/STLPort-4.0/test/eh/gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/test/eh/gcc.mak -------------------------------------------------------------------------------- /libs/STLPort-4.0/test/eh/hp.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/test/eh/hp.mak -------------------------------------------------------------------------------- /libs/STLPort-4.0/test/eh/kai.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/test/eh/kai.mak -------------------------------------------------------------------------------- /libs/STLPort-4.0/test/eh/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/test/eh/log -------------------------------------------------------------------------------- /libs/STLPort-4.0/test/eh/test.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /libs/STLPort-4.0/test/eh/vc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/test/eh/vc.mak -------------------------------------------------------------------------------- /libs/STLPort-4.0/test/eh/vc5.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-4.0/test/eh/vc5.mak -------------------------------------------------------------------------------- /libs/STLPort-4.0/test/regression/fstream.txt: -------------------------------------------------------------------------------- 1 | this 2 | is 3 | a 4 | test 5 | -------------------------------------------------------------------------------- /libs/STLPort-4.0/test/regression/seek.txt: -------------------------------------------------------------------------------- 1 | this 2 | is 3 | a 4 | test 5 | -------------------------------------------------------------------------------- /libs/STLPort-4.0/test/regression/stat.cpp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /libs/STLPort-4.0/test/regression/stdin: -------------------------------------------------------------------------------- 1 | a string 2 | -------------------------------------------------------------------------------- /libs/STLPort-STD/config/new_compiler/confdefs.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libs/STLPort-STD/config/stl_bc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/config/stl_bc.h -------------------------------------------------------------------------------- /libs/STLPort-STD/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/readme.txt -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_algo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_algo.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_algo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_algo.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_algobase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_algobase.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_algobase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_algobase.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_alloc.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_alloc.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_bitset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_bitset.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_bitset.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_bvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_bvector.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_codecvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_codecvt.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_collate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_collate.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_complex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_complex.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_complex.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_config.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_ctype.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_deque.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_deque.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_deque.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_epilog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_epilog.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_exception.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_fstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_fstream.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_fstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_fstream.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_function.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_hash_fun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_hash_fun.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_hash_map.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_hash_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_hash_set.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_heap.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_heap.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_ios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_ios.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_ios.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_ios_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_ios_base.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_iosfwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_iosfwd.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_istream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_istream.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_istream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_istream.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_iterator.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_limits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_limits.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_limits.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_list.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_list.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_locale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_locale.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_locale.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_map.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_monetary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_monetary.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_monetary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_monetary.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_numeric.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_numeric.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_numeric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_numeric.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_ostream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_ostream.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_ostream.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_pair.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_prolog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_prolog.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_queue.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_relops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_relops.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_relops_template.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_rope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_rope.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_rope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_rope.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_set.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_slist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_slist.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_slist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_slist.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_sstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_sstream.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_sstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_sstream.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_stack.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_string.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_string.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_tempbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_tempbuf.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_tempbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_tempbuf.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_threads.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_threads.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_tree.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_tree.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_valarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_valarray.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_valarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_valarray.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_vector.c -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/_vector.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl/c_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl/c_locale.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl_new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl_new -------------------------------------------------------------------------------- /libs/STLPort-STD/stl_new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl_new.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl_string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl_string -------------------------------------------------------------------------------- /libs/STLPort-STD/stl_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl_string.h -------------------------------------------------------------------------------- /libs/STLPort-STD/stl_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/STLPort-STD/stl_vector.h -------------------------------------------------------------------------------- /libs/dibmgr/DibMgrMfcDll.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/dibmgr/DibMgrMfcDll.dsp -------------------------------------------------------------------------------- /libs/dibmgr/dib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/dibmgr/dib.cpp -------------------------------------------------------------------------------- /libs/dibmgr/dib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/dibmgr/dib.h -------------------------------------------------------------------------------- /libs/dibmgr/dibmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/dibmgr/dibmgr.cpp -------------------------------------------------------------------------------- /libs/dibmgr/dibmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/dibmgr/dibmgr.h -------------------------------------------------------------------------------- /libs/dibmgr/dibmgr60.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/dibmgr/dibmgr60.dsp -------------------------------------------------------------------------------- /libs/dibmgr/dibpal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/dibmgr/dibpal.cpp -------------------------------------------------------------------------------- /libs/dibmgr/dibpal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/dibmgr/dibpal.h -------------------------------------------------------------------------------- /libs/dibmgr/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/dibmgr/stdafx.h -------------------------------------------------------------------------------- /libs/genregmgr/genregmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/genregmgr/genregmgr.cpp -------------------------------------------------------------------------------- /libs/genregmgr/genregmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/genregmgr/genregmgr.h -------------------------------------------------------------------------------- /libs/genregmgr/genregmgr60.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/genregmgr/genregmgr60.dsp -------------------------------------------------------------------------------- /libs/lith/Lib_Lith.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/lith/Lib_Lith.dsp -------------------------------------------------------------------------------- /libs/lith/Lib_Lith.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/lith/Lib_Lith.vcxproj -------------------------------------------------------------------------------- /libs/lith/Lib_Lith.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/lith/Lib_Lith.vcxproj.user -------------------------------------------------------------------------------- /libs/lith/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/lith/Makefile -------------------------------------------------------------------------------- /libs/lith/basehash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/lith/basehash.cpp -------------------------------------------------------------------------------- /libs/lith/basehash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/lith/basehash.h -------------------------------------------------------------------------------- /libs/lith/baselist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/lith/baselist.cpp -------------------------------------------------------------------------------- /libs/lith/baselist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/lith/baselist.h -------------------------------------------------------------------------------- /libs/lith/baselistcounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/lith/baselistcounter.cpp -------------------------------------------------------------------------------- /libs/lith/baselistcounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/lith/baselistcounter.h -------------------------------------------------------------------------------- /libs/lith/dprintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/lith/dprintf.cpp -------------------------------------------------------------------------------- /libs/lith/dprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/lith/dprintf.h -------------------------------------------------------------------------------- /libs/lith/lith.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/lith/lith.cpp -------------------------------------------------------------------------------- /libs/lith/lith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/lith/lith.h -------------------------------------------------------------------------------- /libs/lith/lithbaselist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/lith/lithbaselist.cpp -------------------------------------------------------------------------------- /libs/lith/lithbaselist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/lith/lithbaselist.h -------------------------------------------------------------------------------- /libs/lith/lithchunkallocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/lith/lithchunkallocator.cpp -------------------------------------------------------------------------------- /libs/lith/lithchunkallocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/lith/lithchunkallocator.h -------------------------------------------------------------------------------- /libs/lith/lithsimpary.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "lithsimpary.h" 3 | 4 | -------------------------------------------------------------------------------- /libs/lith/lithsimpary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/lith/lithsimpary.h -------------------------------------------------------------------------------- /libs/lith/lithsimparystat.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "lithsimparystat.h" 3 | 4 | -------------------------------------------------------------------------------- /libs/lith/lithsimparystat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/lith/lithsimparystat.h -------------------------------------------------------------------------------- /libs/lith/lithtmpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/lith/lithtmpl.h -------------------------------------------------------------------------------- /libs/lith/lithtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/lith/lithtypes.h -------------------------------------------------------------------------------- /libs/lith/virtlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/lith/virtlist.cpp -------------------------------------------------------------------------------- /libs/lith/virtlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/lith/virtlist.h -------------------------------------------------------------------------------- /libs/stdlith/Lib_StdLith.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/Lib_StdLith.dsp -------------------------------------------------------------------------------- /libs/stdlith/Lib_StdLith.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/Lib_StdLith.vcxproj -------------------------------------------------------------------------------- /libs/stdlith/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/Makefile -------------------------------------------------------------------------------- /libs/stdlith/abstractio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/abstractio.cpp -------------------------------------------------------------------------------- /libs/stdlith/abstractio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/abstractio.h -------------------------------------------------------------------------------- /libs/stdlith/copy_lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/copy_lists.h -------------------------------------------------------------------------------- /libs/stdlith/dynarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/dynarray.cpp -------------------------------------------------------------------------------- /libs/stdlith/dynarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/dynarray.h -------------------------------------------------------------------------------- /libs/stdlith/dynarray.h.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/dynarray.h.bak -------------------------------------------------------------------------------- /libs/stdlith/fastlinklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/fastlinklist.h -------------------------------------------------------------------------------- /libs/stdlith/fileio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/fileio.cpp -------------------------------------------------------------------------------- /libs/stdlith/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/fileio.h -------------------------------------------------------------------------------- /libs/stdlith/genhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/genhash.h -------------------------------------------------------------------------------- /libs/stdlith/genlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/genlist.h -------------------------------------------------------------------------------- /libs/stdlith/glink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/glink.h -------------------------------------------------------------------------------- /libs/stdlith/goodlinklist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/goodlinklist.cpp -------------------------------------------------------------------------------- /libs/stdlith/goodlinklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/goodlinklist.h -------------------------------------------------------------------------------- /libs/stdlith/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/helpers.cpp -------------------------------------------------------------------------------- /libs/stdlith/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/helpers.h -------------------------------------------------------------------------------- /libs/stdlith/l_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/l_allocator.cpp -------------------------------------------------------------------------------- /libs/stdlith/l_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/l_allocator.h -------------------------------------------------------------------------------- /libs/stdlith/linklist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/linklist.cpp -------------------------------------------------------------------------------- /libs/stdlith/linklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/linklist.h -------------------------------------------------------------------------------- /libs/stdlith/lithexception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/lithexception.cpp -------------------------------------------------------------------------------- /libs/stdlith/lithexception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/lithexception.h -------------------------------------------------------------------------------- /libs/stdlith/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/memory.cpp -------------------------------------------------------------------------------- /libs/stdlith/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/memory.h -------------------------------------------------------------------------------- /libs/stdlith/memoryio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/memoryio.cpp -------------------------------------------------------------------------------- /libs/stdlith/memoryio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/memoryio.h -------------------------------------------------------------------------------- /libs/stdlith/morect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/morect.h -------------------------------------------------------------------------------- /libs/stdlith/multilinklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/multilinklist.h -------------------------------------------------------------------------------- /libs/stdlith/object_bank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/object_bank.h -------------------------------------------------------------------------------- /libs/stdlith/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/stdafx.h -------------------------------------------------------------------------------- /libs/stdlith/stdlith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/stdlith.h -------------------------------------------------------------------------------- /libs/stdlith/stdlithdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/stdlithdefs.h -------------------------------------------------------------------------------- /libs/stdlith/stringholder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/stringholder.cpp -------------------------------------------------------------------------------- /libs/stdlith/stringholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/stringholder.h -------------------------------------------------------------------------------- /libs/stdlith/struct_bank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/struct_bank.cpp -------------------------------------------------------------------------------- /libs/stdlith/struct_bank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/stdlith/struct_bank.h -------------------------------------------------------------------------------- /libs/zlib/Lib_ZLib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/zlib/Lib_ZLib.dsp -------------------------------------------------------------------------------- /libs/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/zlib/adler32.c -------------------------------------------------------------------------------- /libs/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/zlib/compress.c -------------------------------------------------------------------------------- /libs/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/zlib/crc32.c -------------------------------------------------------------------------------- /libs/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/zlib/deflate.c -------------------------------------------------------------------------------- /libs/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/zlib/deflate.h -------------------------------------------------------------------------------- /libs/zlib/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/zlib/gzio.c -------------------------------------------------------------------------------- /libs/zlib/infblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/zlib/infblock.c -------------------------------------------------------------------------------- /libs/zlib/infblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/zlib/infblock.h -------------------------------------------------------------------------------- /libs/zlib/infcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/zlib/infcodes.c -------------------------------------------------------------------------------- /libs/zlib/infcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/zlib/infcodes.h -------------------------------------------------------------------------------- /libs/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/zlib/inffast.c -------------------------------------------------------------------------------- /libs/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/zlib/inffast.h -------------------------------------------------------------------------------- /libs/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/zlib/inflate.c -------------------------------------------------------------------------------- /libs/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/zlib/inftrees.c -------------------------------------------------------------------------------- /libs/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/zlib/inftrees.h -------------------------------------------------------------------------------- /libs/zlib/infutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/zlib/infutil.c -------------------------------------------------------------------------------- /libs/zlib/infutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/zlib/infutil.h -------------------------------------------------------------------------------- /libs/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/zlib/trees.c -------------------------------------------------------------------------------- /libs/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/zlib/uncompr.c -------------------------------------------------------------------------------- /libs/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/zlib/zconf.h -------------------------------------------------------------------------------- /libs/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/zlib/zlib.h -------------------------------------------------------------------------------- /libs/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/zlib/zutil.c -------------------------------------------------------------------------------- /libs/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/libs/zlib/zutil.h -------------------------------------------------------------------------------- /osslicenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/osslicenses.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haekb/nolf2-modernizer/HEAD/readme.md --------------------------------------------------------------------------------