├── .gitignore ├── Binary ├── CEGUI │ ├── fonts │ │ ├── DejaVuSans.ttf │ │ ├── Legal.txt │ │ ├── bankgothic.ttf │ │ ├── electronichighwaysign.ttf │ │ ├── pricedown.ttf │ │ ├── sans.ttf │ │ ├── tahoma-bold.ttf │ │ └── tahoma.ttf │ ├── imagesets │ │ ├── Download.png │ │ ├── IVMPBackground.png │ │ ├── IVMPBackgroundNetwork.png │ │ ├── IVMPLoadingLogoHiRes.png │ │ ├── IVMPLogoHiRes.png │ │ ├── IVMPMainMenuLogo.png │ │ ├── IVMPMainMenuLogoNetwork.png │ │ ├── RakNet.png │ │ ├── ReadMe.txt │ │ ├── WindowsLook.imageset │ │ ├── WindowsLook.png │ │ ├── WindowsLook.psd │ │ └── chat.png │ ├── looknfeel │ │ └── WindowsLook.looknfeel │ ├── schemes │ │ ├── WindowsLook.scheme │ │ └── WindowsLookWidgets.scheme │ └── xml_schemas │ │ ├── CEGUIConfig.xsd │ │ ├── Falagard.xsd │ │ ├── Font.xsd │ │ ├── GUILayout.xsd │ │ ├── GUIScheme.xsd │ │ └── Imageset.xsd ├── bass.dll ├── clientscripts │ ├── Examples │ │ ├── GUIMultiColumnList.nut │ │ └── runcode.nut │ ├── audio_test.nut │ ├── indicators_client.nut │ ├── scoreboard.nut │ └── scoreboard2.nut ├── files │ ├── helloWorld.xml │ └── testDB ├── gameplay_files │ └── loadingscreen │ │ ├── loadingscreens_ivmp.dat │ │ └── loadingscreens_ivmp_textures.wtd ├── resources │ ├── RadioLogo.dat │ └── hud.dat ├── scripts │ ├── arraytest.nut │ ├── busdriver.nut │ ├── consoleadmin.nut │ ├── dofile.nut │ ├── dofile2.nut │ ├── eventtest.nut │ ├── filetest.nut │ ├── indicators.nut │ ├── limitchat.nut │ ├── namecheck.nut │ ├── padtest.nut │ ├── pickups.nut │ ├── reftables.nut │ ├── runcode.nut │ ├── simple_gamemode.nut │ ├── sqlite.nut │ ├── squirrel samples │ │ ├── ackermann.nut │ │ ├── array.nut │ │ ├── class.nut │ │ ├── classattributes.nut │ │ ├── coroutines.nut │ │ ├── delegation.nut │ │ ├── fibonacci.nut │ │ ├── flow.nut │ │ ├── generators.nut │ │ ├── hello.nut │ │ ├── list.nut │ │ ├── loops.nut │ │ ├── matrix.nut │ │ ├── metamethods.nut │ │ ├── methcall.nut │ │ └── tailstate.nut │ ├── timertest.nut │ ├── whisper.nut │ └── xml.nut ├── sdk │ └── ivmp_sdk_module │ │ ├── Functions.cpp │ │ ├── Functions.h │ │ ├── Main.cpp │ │ ├── SDK │ │ ├── Natives.h │ │ ├── SDK.cpp │ │ ├── SDK.h │ │ └── Squirrel │ │ │ └── Squirrel.h │ │ ├── ivmp_sdk_module.sln │ │ ├── ivmp_sdk_module.vcxproj │ │ └── makefile ├── settings.xml └── webserver │ ├── clientscripts │ ├── index.html │ ├── indicators_client.nut │ └── scoreboard2.nut │ ├── index.html │ └── resources │ └── index.html ├── COPYRIGHT ├── Client ├── Core │ ├── AimSync.cpp │ ├── AimSync.h │ ├── AnimGroups.h │ ├── C3DLabels.cpp │ ├── C3DLabels.h │ ├── CActorManager.cpp │ ├── CActorManager.h │ ├── CAudio.cpp │ ├── CAudio.h │ ├── CAudioManager.cpp │ ├── CAudioManager.h │ ├── CBlipManager.cpp │ ├── CBlipManager.h │ ├── CCamera.cpp │ ├── CCamera.h │ ├── CChatWindow.cpp │ ├── CChatWindow.h │ ├── CCheckpoint.cpp │ ├── CCheckpoint.h │ ├── CCheckpointManager.cpp │ ├── CCheckpointManager.h │ ├── CClient.cpp │ ├── CClient.h │ ├── CClientPacketHandler.cpp │ ├── CClientPacketHandler.h │ ├── CClientRPCHandler.cpp │ ├── CClientRPCHandler.h │ ├── CClientScriptGUIManager.cpp │ ├── CClientScriptGUIManager.h │ ├── CClientScriptManager.cpp │ ├── CClientScriptManager.h │ ├── CClientTaskManager.cpp │ ├── CClientTaskManager.h │ ├── CContextDataManager.cpp │ ├── CContextDataManager.h │ ├── CCrashFixes.cpp │ ├── CCrashFixes.h │ ├── CCredits.cpp │ ├── CCredits.h │ ├── CCursorHook.cpp │ ├── CCursorHook.h │ ├── CCutsceneInteriors.h │ ├── CD3D9Webkit.cpp │ ├── CD3D9Webkit.hpp │ ├── CDebugView.cpp │ ├── CDebugView.h │ ├── CDirect3DHook.cpp │ ├── CDirect3DHook.h │ ├── CDirectInput8Proxy.cpp │ ├── CDirectInput8Proxy.h │ ├── CDirectInputDevice8Proxy.cpp │ ├── CDirectInputDevice8Proxy.h │ ├── CDirectInputHook.cpp │ ├── CDirectInputHook.h │ ├── CEGUI │ │ ├── cegui │ │ │ ├── include │ │ │ │ ├── CEGUI.h │ │ │ │ ├── CEGUIAffector.h │ │ │ │ ├── CEGUIAnimation.h │ │ │ │ ├── CEGUIAnimationInstance.h │ │ │ │ ├── CEGUIAnimationManager.h │ │ │ │ ├── CEGUIAnimation_xmlHandler.h │ │ │ │ ├── CEGUIBase.h │ │ │ │ ├── CEGUIBasicInterpolators.h │ │ │ │ ├── CEGUIBasicRenderedStringParser.h │ │ │ │ ├── CEGUIBiDiVisualMapping.h │ │ │ │ ├── CEGUIBoundSlot.h │ │ │ │ ├── CEGUICentredRenderedString.h │ │ │ │ ├── CEGUIChainedXMLHandler.h │ │ │ │ ├── CEGUIColourRect.h │ │ │ │ ├── CEGUIConfig.h │ │ │ │ ├── CEGUIConfig_xmlHandler.h │ │ │ │ ├── CEGUICoordConverter.h │ │ │ │ ├── CEGUIDataContainer.h │ │ │ │ ├── CEGUIDefaultLogger.h │ │ │ │ ├── CEGUIDefaultRenderedStringParser.h │ │ │ │ ├── CEGUIDefaultResourceProvider.h │ │ │ │ ├── CEGUIDynamicModule.h │ │ │ │ ├── CEGUIEvent.h │ │ │ │ ├── CEGUIEventArgs.h │ │ │ │ ├── CEGUIEventSet.h │ │ │ │ ├── CEGUIExceptions.h │ │ │ │ ├── CEGUIFactoryModule.h │ │ │ │ ├── CEGUIFont.h │ │ │ │ ├── CEGUIFontGlyph.h │ │ │ │ ├── CEGUIFontManager.h │ │ │ │ ├── CEGUIFont_xmlHandler.h │ │ │ │ ├── CEGUIFormattedRenderedString.h │ │ │ │ ├── CEGUIForwardRefs.h │ │ │ │ ├── CEGUIFreeFunctionSlot.h │ │ │ │ ├── CEGUIFreeTypeFont.h │ │ │ │ ├── CEGUIFribidiVisualMapping.h │ │ │ │ ├── CEGUIFunctorCopySlot.h │ │ │ │ ├── CEGUIFunctorPointerSlot.h │ │ │ │ ├── CEGUIFunctorReferenceBinder.h │ │ │ │ ├── CEGUIFunctorReferenceSlot.h │ │ │ │ ├── CEGUIGUILayout_xmlHandler.h │ │ │ │ ├── CEGUIGeometryBuffer.h │ │ │ │ ├── CEGUIGlobalEventSet.h │ │ │ │ ├── CEGUIImage.h │ │ │ │ ├── CEGUIImageCodec.h │ │ │ │ ├── CEGUIImageset.h │ │ │ │ ├── CEGUIImagesetManager.h │ │ │ │ ├── CEGUIImageset_xmlHandler.h │ │ │ │ ├── CEGUIInputEvent.h │ │ │ │ ├── CEGUIInterpolator.h │ │ │ │ ├── CEGUIIteratorBase.h │ │ │ │ ├── CEGUIJustifiedRenderedString.h │ │ │ │ ├── CEGUIKeyFrame.h │ │ │ │ ├── CEGUILeftAlignedRenderedString.h │ │ │ │ ├── CEGUILogger.h │ │ │ │ ├── CEGUIMemberFunctionSlot.h │ │ │ │ ├── CEGUIMinibidiVisualMapping.h │ │ │ │ ├── CEGUIMinizipResourceProvider.h │ │ │ │ ├── CEGUIMouseCursor.h │ │ │ │ ├── CEGUINamedXMLResourceManager.h │ │ │ │ ├── CEGUIPCRERegexMatcher.h │ │ │ │ ├── CEGUIPixmapFont.h │ │ │ │ ├── CEGUIProperty.h │ │ │ │ ├── CEGUIPropertyHelper.h │ │ │ │ ├── CEGUIPropertySet.h │ │ │ │ ├── CEGUIRect.h │ │ │ │ ├── CEGUIRefCounted.h │ │ │ │ ├── CEGUIRegexMatcher.h │ │ │ │ ├── CEGUIRenderEffect.h │ │ │ │ ├── CEGUIRenderEffectFactory.h │ │ │ │ ├── CEGUIRenderEffectManager.h │ │ │ │ ├── CEGUIRenderQueue.h │ │ │ │ ├── CEGUIRenderTarget.h │ │ │ │ ├── CEGUIRenderedString.h │ │ │ │ ├── CEGUIRenderedStringComponent.h │ │ │ │ ├── CEGUIRenderedStringImageComponent.h │ │ │ │ ├── CEGUIRenderedStringParser.h │ │ │ │ ├── CEGUIRenderedStringTextComponent.h │ │ │ │ ├── CEGUIRenderedStringWidgetComponent.h │ │ │ │ ├── CEGUIRenderedStringWordWrapper.h │ │ │ │ ├── CEGUIRenderer.h │ │ │ │ ├── CEGUIRenderingContext.h │ │ │ │ ├── CEGUIRenderingRoot.h │ │ │ │ ├── CEGUIRenderingSurface.h │ │ │ │ ├── CEGUIRenderingWindow.h │ │ │ │ ├── CEGUIResourceProvider.h │ │ │ │ ├── CEGUIRightAlignedRenderedString.h │ │ │ │ ├── CEGUIScheme.h │ │ │ │ ├── CEGUISchemeManager.h │ │ │ │ ├── CEGUIScheme_xmlHandler.h │ │ │ │ ├── CEGUIScriptModule.h │ │ │ │ ├── CEGUISingleton.h │ │ │ │ ├── CEGUISize.h │ │ │ │ ├── CEGUISlotFunctorBase.h │ │ │ │ ├── CEGUIString.h │ │ │ │ ├── CEGUISubscriberSlot.h │ │ │ │ ├── CEGUISystem.h │ │ │ │ ├── CEGUITextUtils.h │ │ │ │ ├── CEGUITexture.h │ │ │ │ ├── CEGUITextureTarget.h │ │ │ │ ├── CEGUITplWRFactoryRegisterer.h │ │ │ │ ├── CEGUITplWindowFactory.h │ │ │ │ ├── CEGUITplWindowRendererFactory.h │ │ │ │ ├── CEGUIUDim.h │ │ │ │ ├── CEGUIVector.h │ │ │ │ ├── CEGUIVersion.h │ │ │ │ ├── CEGUIVertex.h │ │ │ │ ├── CEGUIWRFactoryRegisterer.h │ │ │ │ ├── CEGUIWidgetModule.h │ │ │ │ ├── CEGUIWindow.h │ │ │ │ ├── CEGUIWindowFactory.h │ │ │ │ ├── CEGUIWindowFactoryManager.h │ │ │ │ ├── CEGUIWindowManager.h │ │ │ │ ├── CEGUIWindowProperties.h │ │ │ │ ├── CEGUIWindowRenderer.h │ │ │ │ ├── CEGUIWindowRendererManager.h │ │ │ │ ├── CEGUIWindowRendererModule.h │ │ │ │ ├── CEGUIXMLAttributes.h │ │ │ │ ├── CEGUIXMLHandler.h │ │ │ │ ├── CEGUIXMLParser.h │ │ │ │ ├── CEGUIXMLSerializer.h │ │ │ │ ├── CEGUIcolour.h │ │ │ │ ├── ImageCodecModules │ │ │ │ │ └── SILLYImageCodec │ │ │ │ │ │ ├── CEGUISILLYImageCodec.h │ │ │ │ │ │ └── CEGUISILLYImageCodecModule.h │ │ │ │ ├── RendererModules │ │ │ │ │ ├── Direct3D10 │ │ │ │ │ │ ├── CEGUIDirect3D10GeometryBuffer.h │ │ │ │ │ │ ├── CEGUIDirect3D10RenderTarget.h │ │ │ │ │ │ ├── CEGUIDirect3D10Renderer.h │ │ │ │ │ │ ├── CEGUIDirect3D10Texture.h │ │ │ │ │ │ ├── CEGUIDirect3D10TextureTarget.h │ │ │ │ │ │ └── CEGUIDirect3D10ViewportTarget.h │ │ │ │ │ └── Direct3D9 │ │ │ │ │ │ ├── CEGUIDirect3D9GeometryBuffer.h │ │ │ │ │ │ ├── CEGUIDirect3D9RenderTarget.h │ │ │ │ │ │ ├── CEGUIDirect3D9Renderer.h │ │ │ │ │ │ ├── CEGUIDirect3D9Texture.h │ │ │ │ │ │ ├── CEGUIDirect3D9TextureTarget.h │ │ │ │ │ │ └── CEGUIDirect3D9ViewportTarget.h │ │ │ │ ├── WindowRendererSets │ │ │ │ │ └── Falagard │ │ │ │ │ │ ├── FalButton.h │ │ │ │ │ │ ├── FalDefault.h │ │ │ │ │ │ ├── FalEditbox.h │ │ │ │ │ │ ├── FalEditboxProperties.h │ │ │ │ │ │ ├── FalFrameWindow.h │ │ │ │ │ │ ├── FalItemEntry.h │ │ │ │ │ │ ├── FalItemListbox.h │ │ │ │ │ │ ├── FalListHeader.h │ │ │ │ │ │ ├── FalListHeaderProperties.h │ │ │ │ │ │ ├── FalListHeaderSegment.h │ │ │ │ │ │ ├── FalListbox.h │ │ │ │ │ │ ├── FalMenuItem.h │ │ │ │ │ │ ├── FalMenubar.h │ │ │ │ │ │ ├── FalModule.h │ │ │ │ │ │ ├── FalMultiColumnList.h │ │ │ │ │ │ ├── FalMultiLineEditbox.h │ │ │ │ │ │ ├── FalMultiLineEditboxProperties.h │ │ │ │ │ │ ├── FalPopupMenu.h │ │ │ │ │ │ ├── FalProgressBar.h │ │ │ │ │ │ ├── FalProgressBarProperties.h │ │ │ │ │ │ ├── FalScrollablePane.h │ │ │ │ │ │ ├── FalScrollbar.h │ │ │ │ │ │ ├── FalScrollbarProperties.h │ │ │ │ │ │ ├── FalSlider.h │ │ │ │ │ │ ├── FalSliderProperties.h │ │ │ │ │ │ ├── FalStatic.h │ │ │ │ │ │ ├── FalStaticImage.h │ │ │ │ │ │ ├── FalStaticImageProperties.h │ │ │ │ │ │ ├── FalStaticProperties.h │ │ │ │ │ │ ├── FalStaticText.h │ │ │ │ │ │ ├── FalStaticTextProperties.h │ │ │ │ │ │ ├── FalSystemButton.h │ │ │ │ │ │ ├── FalTabButton.h │ │ │ │ │ │ ├── FalTabControl.h │ │ │ │ │ │ ├── FalTabControlProperties.h │ │ │ │ │ │ ├── FalTitlebar.h │ │ │ │ │ │ ├── FalToggleButton.h │ │ │ │ │ │ ├── FalTooltip.h │ │ │ │ │ │ └── FalTree.h │ │ │ │ ├── XMLParserModules │ │ │ │ │ └── ExpatParser │ │ │ │ │ │ ├── CEGUIExpatParser.h │ │ │ │ │ │ └── CEGUIExpatParserModule.h │ │ │ │ ├── config.h │ │ │ │ ├── config.h.in │ │ │ │ ├── elements │ │ │ │ │ ├── CEGUIAll.h │ │ │ │ │ ├── CEGUIButtonBase.h │ │ │ │ │ ├── CEGUICheckbox.h │ │ │ │ │ ├── CEGUICheckboxProperties.h │ │ │ │ │ ├── CEGUIClippedContainer.h │ │ │ │ │ ├── CEGUIComboDropList.h │ │ │ │ │ ├── CEGUICombobox.h │ │ │ │ │ ├── CEGUIComboboxProperties.h │ │ │ │ │ ├── CEGUIDragContainer.h │ │ │ │ │ ├── CEGUIDragContainerProperties.h │ │ │ │ │ ├── CEGUIEditbox.h │ │ │ │ │ ├── CEGUIEditboxProperties.h │ │ │ │ │ ├── CEGUIFrameWindow.h │ │ │ │ │ ├── CEGUIFrameWindowProperties.h │ │ │ │ │ ├── CEGUIGUISheet.h │ │ │ │ │ ├── CEGUIGridLayoutContainer.h │ │ │ │ │ ├── CEGUIGridLayoutContainerProperties.h │ │ │ │ │ ├── CEGUIGroupBox.h │ │ │ │ │ ├── CEGUIHorizontalLayoutContainer.h │ │ │ │ │ ├── CEGUIItemEntry.h │ │ │ │ │ ├── CEGUIItemEntryProperties.h │ │ │ │ │ ├── CEGUIItemListBase.h │ │ │ │ │ ├── CEGUIItemListBaseProperties.h │ │ │ │ │ ├── CEGUIItemListbox.h │ │ │ │ │ ├── CEGUIItemListboxProperties.h │ │ │ │ │ ├── CEGUILayoutContainer.h │ │ │ │ │ ├── CEGUIListHeader.h │ │ │ │ │ ├── CEGUIListHeaderProperties.h │ │ │ │ │ ├── CEGUIListHeaderSegment.h │ │ │ │ │ ├── CEGUIListHeaderSegmentProperties.h │ │ │ │ │ ├── CEGUIListbox.h │ │ │ │ │ ├── CEGUIListboxItem.h │ │ │ │ │ ├── CEGUIListboxProperties.h │ │ │ │ │ ├── CEGUIListboxTextItem.h │ │ │ │ │ ├── CEGUIMenuBase.h │ │ │ │ │ ├── CEGUIMenuBaseProperties.h │ │ │ │ │ ├── CEGUIMenuItem.h │ │ │ │ │ ├── CEGUIMenuItemProperties.h │ │ │ │ │ ├── CEGUIMenubar.h │ │ │ │ │ ├── CEGUIMultiColumnList.h │ │ │ │ │ ├── CEGUIMultiColumnListProperties.h │ │ │ │ │ ├── CEGUIMultiLineEditbox.h │ │ │ │ │ ├── CEGUIMultiLineEditboxProperties.h │ │ │ │ │ ├── CEGUIPopupMenu.h │ │ │ │ │ ├── CEGUIPopupMenuProperties.h │ │ │ │ │ ├── CEGUIProgressBar.h │ │ │ │ │ ├── CEGUIProgressBarProperties.h │ │ │ │ │ ├── CEGUIPushButton.h │ │ │ │ │ ├── CEGUIRadioButton.h │ │ │ │ │ ├── CEGUIRadioButtonProperties.h │ │ │ │ │ ├── CEGUIScrollablePane.h │ │ │ │ │ ├── CEGUIScrollablePaneProperties.h │ │ │ │ │ ├── CEGUIScrollbar.h │ │ │ │ │ ├── CEGUIScrollbarProperties.h │ │ │ │ │ ├── CEGUIScrolledContainer.h │ │ │ │ │ ├── CEGUIScrolledContainerProperties.h │ │ │ │ │ ├── CEGUIScrolledItemListBase.h │ │ │ │ │ ├── CEGUIScrolledItemListBaseProperties.h │ │ │ │ │ ├── CEGUISequentialLayoutContainer.h │ │ │ │ │ ├── CEGUISlider.h │ │ │ │ │ ├── CEGUISliderProperties.h │ │ │ │ │ ├── CEGUISpinner.h │ │ │ │ │ ├── CEGUISpinnerProperties.h │ │ │ │ │ ├── CEGUITabButton.h │ │ │ │ │ ├── CEGUITabControl.h │ │ │ │ │ ├── CEGUITabControlProperties.h │ │ │ │ │ ├── CEGUIThumb.h │ │ │ │ │ ├── CEGUIThumbProperties.h │ │ │ │ │ ├── CEGUITitlebar.h │ │ │ │ │ ├── CEGUITitlebarProperties.h │ │ │ │ │ ├── CEGUITooltip.h │ │ │ │ │ ├── CEGUITooltipProperties.h │ │ │ │ │ ├── CEGUITree.h │ │ │ │ │ ├── CEGUITreeItem.h │ │ │ │ │ ├── CEGUITreeProperties.h │ │ │ │ │ └── CEGUIVerticalLayoutContainer.h │ │ │ │ ├── falagard │ │ │ │ │ ├── CEGUIFalComponentBase.h │ │ │ │ │ ├── CEGUIFalDimensions.h │ │ │ │ │ ├── CEGUIFalEnums.h │ │ │ │ │ ├── CEGUIFalFrameComponent.h │ │ │ │ │ ├── CEGUIFalImageryComponent.h │ │ │ │ │ ├── CEGUIFalImagerySection.h │ │ │ │ │ ├── CEGUIFalLayerSpecification.h │ │ │ │ │ ├── CEGUIFalNamedArea.h │ │ │ │ │ ├── CEGUIFalPropertyDefinition.h │ │ │ │ │ ├── CEGUIFalPropertyDefinitionBase.h │ │ │ │ │ ├── CEGUIFalPropertyInitialiser.h │ │ │ │ │ ├── CEGUIFalPropertyLinkDefinition.h │ │ │ │ │ ├── CEGUIFalSectionSpecification.h │ │ │ │ │ ├── CEGUIFalStateImagery.h │ │ │ │ │ ├── CEGUIFalTextComponent.h │ │ │ │ │ ├── CEGUIFalWidgetComponent.h │ │ │ │ │ ├── CEGUIFalWidgetLookFeel.h │ │ │ │ │ ├── CEGUIFalWidgetLookManager.h │ │ │ │ │ ├── CEGUIFalXMLEnumHelper.h │ │ │ │ │ └── CEGUIFalagard_xmlHandler.h │ │ │ │ ├── zconf.h │ │ │ │ └── zlib.h │ │ │ └── src │ │ │ │ ├── CEGUIAffector.cpp │ │ │ │ ├── CEGUIAnimation.cpp │ │ │ │ ├── CEGUIAnimationInstance.cpp │ │ │ │ ├── CEGUIAnimationManager.cpp │ │ │ │ ├── CEGUIAnimation_xmlHandler.cpp │ │ │ │ ├── CEGUIBase.cpp │ │ │ │ ├── CEGUIBasicInterpolators.cpp │ │ │ │ ├── CEGUIBasicRenderedStringParser.cpp │ │ │ │ ├── CEGUIBiDiVisualMapping.cpp │ │ │ │ ├── CEGUIBoundSlot.cpp │ │ │ │ ├── CEGUICentredRenderedString.cpp │ │ │ │ ├── CEGUIChainedXMLHandler.cpp │ │ │ │ ├── CEGUIColourRect.cpp │ │ │ │ ├── CEGUIConfig_xmlHandler.cpp │ │ │ │ ├── CEGUICoordConverter.cpp │ │ │ │ ├── CEGUIDataContainer.cpp │ │ │ │ ├── CEGUIDefaultLogger.cpp │ │ │ │ ├── CEGUIDefaultRenderedStringParser.cpp │ │ │ │ ├── CEGUIDefaultResourceProvider.cpp │ │ │ │ ├── CEGUIDynamicModule.cpp │ │ │ │ ├── CEGUIEvent.cpp │ │ │ │ ├── CEGUIEventArgs.cpp │ │ │ │ ├── CEGUIEventSet.cpp │ │ │ │ ├── CEGUIEventSignal.cpp │ │ │ │ ├── CEGUIEventSignalSet.cpp │ │ │ │ ├── CEGUIExceptions.cpp │ │ │ │ ├── CEGUIFactoryModule.cpp │ │ │ │ ├── CEGUIFont.cpp │ │ │ │ ├── CEGUIFontManager.cpp │ │ │ │ ├── CEGUIFontProperties.cpp │ │ │ │ ├── CEGUIFont_xmlHandler.cpp │ │ │ │ ├── CEGUIFormattedRenderedString.cpp │ │ │ │ ├── CEGUIFreeTypeFont.cpp │ │ │ │ ├── CEGUIFribidiVisualMapping.cpp │ │ │ │ ├── CEGUIGUILayout_xmlHandler.cpp │ │ │ │ ├── CEGUIGeometryBuffer.cpp │ │ │ │ ├── CEGUIGlobalEventSet.cpp │ │ │ │ ├── CEGUIImage.cpp │ │ │ │ ├── CEGUIImageCodec.cpp │ │ │ │ ├── CEGUIImageset.cpp │ │ │ │ ├── CEGUIImagesetManager.cpp │ │ │ │ ├── CEGUIImageset_xmlHandler.cpp │ │ │ │ ├── CEGUIJustifiedRenderedString.cpp │ │ │ │ ├── CEGUIJustifiedRenderedStringWordWrapper.cpp │ │ │ │ ├── CEGUIKeyFrame.cpp │ │ │ │ ├── CEGUILeftAlignedRenderedString.cpp │ │ │ │ ├── CEGUILogger.cpp │ │ │ │ ├── CEGUIMinibidiVisualMapping.cpp │ │ │ │ ├── CEGUIMinizipResourceProvider.cpp │ │ │ │ ├── CEGUIMouseCursor.cpp │ │ │ │ ├── CEGUINamedXMLResourceManager.cpp │ │ │ │ ├── CEGUIPCRERegexMatcher.cpp │ │ │ │ ├── CEGUIPixmapFont.cpp │ │ │ │ ├── CEGUIProperty.cpp │ │ │ │ ├── CEGUIPropertyHelper.cpp │ │ │ │ ├── CEGUIPropertySet.cpp │ │ │ │ ├── CEGUIRect.cpp │ │ │ │ ├── CEGUIRenderEffectManager.cpp │ │ │ │ ├── CEGUIRenderQueue.cpp │ │ │ │ ├── CEGUIRenderedString.cpp │ │ │ │ ├── CEGUIRenderedStringComponent.cpp │ │ │ │ ├── CEGUIRenderedStringImageComponent.cpp │ │ │ │ ├── CEGUIRenderedStringTextComponent.cpp │ │ │ │ ├── CEGUIRenderedStringWidgetComponent.cpp │ │ │ │ ├── CEGUIRenderingRoot.cpp │ │ │ │ ├── CEGUIRenderingSurface.cpp │ │ │ │ ├── CEGUIRenderingWindow.cpp │ │ │ │ ├── CEGUIRightAlignedRenderedString.cpp │ │ │ │ ├── CEGUIScheme.cpp │ │ │ │ ├── CEGUISchemeManager.cpp │ │ │ │ ├── CEGUIScheme_xmlHandler.cpp │ │ │ │ ├── CEGUIScriptModule.cpp │ │ │ │ ├── CEGUISize.cpp │ │ │ │ ├── CEGUIString.cpp │ │ │ │ ├── CEGUISubscriberSlot.cpp │ │ │ │ ├── CEGUISystem.cpp │ │ │ │ ├── CEGUITextUtils.cpp │ │ │ │ ├── CEGUIWRFactoryRegisterer.cpp │ │ │ │ ├── CEGUIWindow.cpp │ │ │ │ ├── CEGUIWindowFactory.cpp │ │ │ │ ├── CEGUIWindowFactoryManager.cpp │ │ │ │ ├── CEGUIWindowManager.cpp │ │ │ │ ├── CEGUIWindowProperties.cpp │ │ │ │ ├── CEGUIWindowRenderer.cpp │ │ │ │ ├── CEGUIWindowRendererManager.cpp │ │ │ │ ├── CEGUIWindowRendererModule.cpp │ │ │ │ ├── CEGUIXMLAttributes.cpp │ │ │ │ ├── CEGUIXMLHandler.cpp │ │ │ │ ├── CEGUIXMLParser.cpp │ │ │ │ ├── CEGUIXMLSerializer.cpp │ │ │ │ ├── CEGUIcolour.cpp │ │ │ │ ├── ImageCodecModules │ │ │ │ └── SILLYImageCodec │ │ │ │ │ ├── CEGUISILLYImageCodec.cpp │ │ │ │ │ └── CEGUISILLYImageCodecModule.cpp │ │ │ │ ├── RendererModules │ │ │ │ ├── Direct3D10 │ │ │ │ │ ├── CEGUIDirect3D10GeometryBuffer.cpp │ │ │ │ │ ├── CEGUIDirect3D10RenderTarget.cpp │ │ │ │ │ ├── CEGUIDirect3D10Renderer.cpp │ │ │ │ │ ├── CEGUIDirect3D10RendererShader.txt │ │ │ │ │ ├── CEGUIDirect3D10Texture.cpp │ │ │ │ │ ├── CEGUIDirect3D10TextureTarget.cpp │ │ │ │ │ └── CEGUIDirect3D10ViewportTarget.cpp │ │ │ │ └── Direct3D9 │ │ │ │ │ ├── CEGUIDirect3D9GeometryBuffer.cpp │ │ │ │ │ ├── CEGUIDirect3D9RenderTarget.cpp │ │ │ │ │ ├── CEGUIDirect3D9Renderer.cpp │ │ │ │ │ ├── CEGUIDirect3D9Texture.cpp │ │ │ │ │ ├── CEGUIDirect3D9TextureTarget.cpp │ │ │ │ │ └── CEGUIDirect3D9ViewportTarget.cpp │ │ │ │ ├── WindowRendererSets │ │ │ │ └── Falagard │ │ │ │ │ ├── FalButton.cpp │ │ │ │ │ ├── FalDefault.cpp │ │ │ │ │ ├── FalEditbox.cpp │ │ │ │ │ ├── FalEditboxProperties.cpp │ │ │ │ │ ├── FalFrameWindow.cpp │ │ │ │ │ ├── FalItemEntry.cpp │ │ │ │ │ ├── FalItemListbox.cpp │ │ │ │ │ ├── FalListHeader.cpp │ │ │ │ │ ├── FalListHeaderProperties.cpp │ │ │ │ │ ├── FalListHeaderSegment.cpp │ │ │ │ │ ├── FalListbox.cpp │ │ │ │ │ ├── FalMenuItem.cpp │ │ │ │ │ ├── FalMenubar.cpp │ │ │ │ │ ├── FalModule.cpp │ │ │ │ │ ├── FalMultiColumnList.cpp │ │ │ │ │ ├── FalMultiLineEditbox.cpp │ │ │ │ │ ├── FalMultiLineEditboxProperties.cpp │ │ │ │ │ ├── FalPopupMenu.cpp │ │ │ │ │ ├── FalProgressBar.cpp │ │ │ │ │ ├── FalProgressBarProperties.cpp │ │ │ │ │ ├── FalScrollablePane.cpp │ │ │ │ │ ├── FalScrollbar.cpp │ │ │ │ │ ├── FalScrollbarProperties.cpp │ │ │ │ │ ├── FalSlider.cpp │ │ │ │ │ ├── FalSliderProperties.cpp │ │ │ │ │ ├── FalStatic.cpp │ │ │ │ │ ├── FalStaticImage.cpp │ │ │ │ │ ├── FalStaticImageProperties.cpp │ │ │ │ │ ├── FalStaticProperties.cpp │ │ │ │ │ ├── FalStaticText.cpp │ │ │ │ │ ├── FalStaticTextProperties.cpp │ │ │ │ │ ├── FalSystemButton.cpp │ │ │ │ │ ├── FalTabButton.cpp │ │ │ │ │ ├── FalTabControl.cpp │ │ │ │ │ ├── FalTabControlProperties.cpp │ │ │ │ │ ├── FalTitlebar.cpp │ │ │ │ │ ├── FalToggleButton.cpp │ │ │ │ │ ├── FalTooltip.cpp │ │ │ │ │ └── FalTree.cpp │ │ │ │ ├── XMLParserModules │ │ │ │ └── ExpatParser │ │ │ │ │ ├── CEGUIExpatParser.cpp │ │ │ │ │ └── CEGUIExpatParserModule.cpp │ │ │ │ ├── elements │ │ │ │ ├── CEGUIButtonBase.cpp │ │ │ │ ├── CEGUICheckbox.cpp │ │ │ │ ├── CEGUICheckboxProperties.cpp │ │ │ │ ├── CEGUIClippedContainer.cpp │ │ │ │ ├── CEGUIComboDropList.cpp │ │ │ │ ├── CEGUICombobox.cpp │ │ │ │ ├── CEGUIComboboxProperties.cpp │ │ │ │ ├── CEGUIDragContainer.cpp │ │ │ │ ├── CEGUIDragContainerProperties.cpp │ │ │ │ ├── CEGUIEditbox.cpp │ │ │ │ ├── CEGUIEditboxProperties.cpp │ │ │ │ ├── CEGUIFrameWindow.cpp │ │ │ │ ├── CEGUIFrameWindowProperties.cpp │ │ │ │ ├── CEGUIGUISheet.cpp │ │ │ │ ├── CEGUIGridLayoutContainer.cpp │ │ │ │ ├── CEGUIGridLayoutContainerProperties.cpp │ │ │ │ ├── CEGUIGroupBox.cpp │ │ │ │ ├── CEGUIHorizontalLayoutContainer.cpp │ │ │ │ ├── CEGUIItemEntry.cpp │ │ │ │ ├── CEGUIItemEntryProperties.cpp │ │ │ │ ├── CEGUIItemListBase.cpp │ │ │ │ ├── CEGUIItemListBaseProperties.cpp │ │ │ │ ├── CEGUIItemListbox.cpp │ │ │ │ ├── CEGUIItemListboxProperties.cpp │ │ │ │ ├── CEGUILayoutContainer.cpp │ │ │ │ ├── CEGUIListHeader.cpp │ │ │ │ ├── CEGUIListHeaderProperties.cpp │ │ │ │ ├── CEGUIListHeaderSegment.cpp │ │ │ │ ├── CEGUIListHeaderSegmentProperties.cpp │ │ │ │ ├── CEGUIListbox.cpp │ │ │ │ ├── CEGUIListboxItem.cpp │ │ │ │ ├── CEGUIListboxProperties.cpp │ │ │ │ ├── CEGUIListboxTextItem.cpp │ │ │ │ ├── CEGUIMenuBase.cpp │ │ │ │ ├── CEGUIMenuBaseProperties.cpp │ │ │ │ ├── CEGUIMenuItem.cpp │ │ │ │ ├── CEGUIMenuItemProperties.cpp │ │ │ │ ├── CEGUIMenubar.cpp │ │ │ │ ├── CEGUIMultiColumnList.cpp │ │ │ │ ├── CEGUIMultiColumnListProperties.cpp │ │ │ │ ├── CEGUIMultiLineEditbox.cpp │ │ │ │ ├── CEGUIMultiLineEditboxProperties.cpp │ │ │ │ ├── CEGUIPopupMenu.cpp │ │ │ │ ├── CEGUIPopupMenuProperties.cpp │ │ │ │ ├── CEGUIProgressBar.cpp │ │ │ │ ├── CEGUIProgressBarProperties.cpp │ │ │ │ ├── CEGUIPushButton.cpp │ │ │ │ ├── CEGUIRadioButton.cpp │ │ │ │ ├── CEGUIRadioButtonProperties.cpp │ │ │ │ ├── CEGUIScrollablePane.cpp │ │ │ │ ├── CEGUIScrollablePaneProperties.cpp │ │ │ │ ├── CEGUIScrollbar.cpp │ │ │ │ ├── CEGUIScrollbarProperties.cpp │ │ │ │ ├── CEGUIScrolledContainer.cpp │ │ │ │ ├── CEGUIScrolledContainerProperties.cpp │ │ │ │ ├── CEGUIScrolledItemListBase.cpp │ │ │ │ ├── CEGUIScrolledItemListBaseProperties.cpp │ │ │ │ ├── CEGUISequentialLayoutContainer.cpp │ │ │ │ ├── CEGUISlider.cpp │ │ │ │ ├── CEGUISliderProperties.cpp │ │ │ │ ├── CEGUISpinner.cpp │ │ │ │ ├── CEGUISpinnerProperties.cpp │ │ │ │ ├── CEGUITabButton.cpp │ │ │ │ ├── CEGUITabControl.cpp │ │ │ │ ├── CEGUITabControlProperties.cpp │ │ │ │ ├── CEGUIThumb.cpp │ │ │ │ ├── CEGUIThumbProperties.cpp │ │ │ │ ├── CEGUITitlebar.cpp │ │ │ │ ├── CEGUITitlebarProperties.cpp │ │ │ │ ├── CEGUITooltip.cpp │ │ │ │ ├── CEGUITooltipProperties.cpp │ │ │ │ ├── CEGUITree.cpp │ │ │ │ ├── CEGUITreeItem.cpp │ │ │ │ ├── CEGUITreeProperties.cpp │ │ │ │ └── CEGUIVerticalLayoutContainer.cpp │ │ │ │ ├── falagard │ │ │ │ ├── CEGUIFalComponentBase.cpp │ │ │ │ ├── CEGUIFalDimensions.cpp │ │ │ │ ├── CEGUIFalFrameComponent.cpp │ │ │ │ ├── CEGUIFalImageryComponent.cpp │ │ │ │ ├── CEGUIFalImagerySection.cpp │ │ │ │ ├── CEGUIFalLayerSpecification.cpp │ │ │ │ ├── CEGUIFalNamedArea.cpp │ │ │ │ ├── CEGUIFalPropertyDefinition.cpp │ │ │ │ ├── CEGUIFalPropertyDefinitionBase.cpp │ │ │ │ ├── CEGUIFalPropertyInitialiser.cpp │ │ │ │ ├── CEGUIFalPropertyLinkDefinition.cpp │ │ │ │ ├── CEGUIFalSectionSpecification.cpp │ │ │ │ ├── CEGUIFalStateImagery.cpp │ │ │ │ ├── CEGUIFalTextComponent.cpp │ │ │ │ ├── CEGUIFalWidgetComponent.cpp │ │ │ │ ├── CEGUIFalWidgetLookFeel.cpp │ │ │ │ ├── CEGUIFalWidgetLookManager.cpp │ │ │ │ ├── CEGUIFalXMLEnumHelper.cpp │ │ │ │ └── CEGUIFalagard_xmlHandler.cpp │ │ │ │ ├── minibidi.cpp │ │ │ │ └── minizip │ │ │ │ ├── README │ │ │ │ ├── ioapi.cpp │ │ │ │ ├── ioapi.h │ │ │ │ ├── iowin32.cpp │ │ │ │ ├── iowin32.h │ │ │ │ ├── unzip.cpp │ │ │ │ └── unzip.h │ │ └── projects │ │ │ ├── BaseSystem │ │ │ ├── CEGUIBase.vcxproj │ │ │ └── CEGUIBase.vcxproj.filters │ │ │ ├── ImageCodecModules │ │ │ └── SILLYImageCodec │ │ │ │ ├── CEGUISILLYImageCodec.vcxproj │ │ │ │ └── CEGUISILLYImageCodec.vcxproj.filters │ │ │ ├── RendererModules │ │ │ └── Direct3D9 │ │ │ │ ├── CEGUIDirect3D9Renderer.vcxproj │ │ │ │ └── CEGUIDirect3D9Renderer.vcxproj.filters │ │ │ ├── WindowRendererSets │ │ │ └── Falagard │ │ │ │ ├── CEGUIFalagardWRBase.vcxproj │ │ │ │ └── CEGUIFalagardWRBase.vcxproj.filters │ │ │ └── XMLParserModules │ │ │ └── expatParser │ │ │ ├── CEGUIExpatParser.vcxproj │ │ │ └── CEGUIExpatParser.vcxproj.filters │ ├── CFPSCounter.cpp │ ├── CFPSCounter.h │ ├── CFileTransfer.cpp │ ├── CFileTransfer.h │ ├── CFileTransferManager.cpp │ ├── CFileTransferManager.h │ ├── CFireManager.cpp │ ├── CFireManager.h │ ├── CGUI.cpp │ ├── CGUI.h │ ├── CGame.cpp │ ├── CGame.h │ ├── CGameFileChecker.cpp │ ├── CGameFileChecker.h │ ├── CGraphics.cpp │ ├── CGraphics.h │ ├── CHooks.cpp │ ├── CHooks.h │ ├── CInputWindow.cpp │ ├── CInputWindow.h │ ├── CLocalPlayer.cpp │ ├── CLocalPlayer.h │ ├── CMainMenu.cpp │ ├── CMainMenu.h │ ├── CMasterListQuery.cpp │ ├── CMasterListQuery.h │ ├── CModelManager.cpp │ ├── CModelManager.h │ ├── CNameTags.cpp │ ├── CNameTags.h │ ├── CNetworkEntity.h │ ├── CNetworkEntityManager.h │ ├── CNetworkManager.cpp │ ├── CNetworkManager.h │ ├── CNetworkPlayer.cpp │ ├── CNetworkPlayer.h │ ├── CNetworkVehicle.cpp │ ├── CNetworkVehicle.h │ ├── CObject.cpp │ ├── CObject.h │ ├── CObjectManager.cpp │ ├── CObjectManager.h │ ├── COffsets.cpp │ ├── COffsets.h │ ├── CPatches.cpp │ ├── CPatches.h │ ├── CPickup.cpp │ ├── CPickup.h │ ├── CPickupManager.cpp │ ├── CPickupManager.h │ ├── CPlayerManager.cpp │ ├── CPlayerManager.h │ ├── CPools.cpp │ ├── CPools.h │ ├── CQuickConnect.cpp │ ├── CQuickConnect.h │ ├── CRemotePlayer.cpp │ ├── CRemotePlayer.h │ ├── CScreenShot.cpp │ ├── CScreenShot.h │ ├── CServerBrowser.cpp │ ├── CServerBrowser.h │ ├── CServerQuery.cpp │ ├── CServerQuery.h │ ├── CSettingsMenu.cpp │ ├── CSettingsMenu.h │ ├── CStreamer.cpp │ ├── CStreamer.h │ ├── CTrains.cpp │ ├── CTrains.h │ ├── CVehicleManager.cpp │ ├── CVehicleManager.h │ ├── CXLiveHook.cpp │ ├── CXLiveHook.h │ ├── Client.Core.vcxproj │ ├── Client.Core.vcxproj.filters │ ├── Commands.cpp │ ├── Commands.h │ ├── EA │ │ ├── EAAssert │ │ │ └── eaassert.h │ │ ├── EABase │ │ │ ├── config │ │ │ │ ├── eacompiler.h │ │ │ │ ├── eacompilertraits.h │ │ │ │ └── eaplatform.h │ │ │ ├── eabase.h │ │ │ └── earesult.h │ │ ├── EAIO │ │ │ ├── Allocator.h │ │ │ ├── EAFileBase.h │ │ │ ├── EAFileDirectory.h │ │ │ ├── EAFileNotification.h │ │ │ ├── EAFileStream.h │ │ │ ├── EAFileUtil.h │ │ │ ├── EAIniFile.h │ │ │ ├── EAStream.h │ │ │ ├── EAStreamAdapter.h │ │ │ ├── EAStreamBuffer.h │ │ │ ├── EAStreamChild.h │ │ │ ├── EAStreamCpp.h │ │ │ ├── EAStreamFixedMemory.h │ │ │ ├── EAStreamMemory.h │ │ │ ├── EAStreamNull.h │ │ │ ├── FnEncode.h │ │ │ ├── FnMatch.h │ │ │ ├── PathString.h │ │ │ ├── StdC │ │ │ │ └── EAFileStreamStdC.h │ │ │ ├── Unix │ │ │ │ └── EAFileStreamUnix.h │ │ │ ├── Win32 │ │ │ │ └── EAFileStreamWin32.h │ │ │ └── internal │ │ │ │ ├── Config.h │ │ │ │ ├── EAIOEARefCount.h │ │ │ │ ├── EAIOEASTLCoreAllocator.h │ │ │ │ └── EAIOZoneObject.h │ │ ├── EARaster │ │ │ ├── EARaster.h │ │ │ ├── EARasterColor.h │ │ │ ├── EARasterConfig.h │ │ │ └── internal │ │ │ │ ├── EARasterInternal.h │ │ │ │ └── EARasterUtils.h │ │ ├── EAWebKit │ │ │ ├── DLLInterface.h │ │ │ ├── EAWebKit.h │ │ │ ├── EAWebKitClipboard.h │ │ │ ├── EAWebKitConfig.h │ │ │ ├── EAWebKitFPUPrecision.h │ │ │ ├── EAWebKitFileSystem.h │ │ │ ├── EAWebKitForwardDeclarations.h │ │ │ ├── EAWebKitGraphics.h │ │ │ ├── EAWebKitInput.h │ │ │ ├── EAWebKitJavascriptDebugListener.h │ │ │ ├── EAWebKitJavascriptValue.h │ │ │ ├── EAWebKitLinkHook.h │ │ │ ├── EAWebKitLocalizedStringsEnum.h │ │ │ ├── EAWebKitPlatformSocketAPI.h │ │ │ ├── EAWebKitTextInterface.h │ │ │ ├── EAWebKitTransport.h │ │ │ ├── EAWebKitUtfXmlInterface.h │ │ │ ├── EAWebKitView.h │ │ │ ├── EAWebKitViewNotification.h │ │ │ ├── EAWebkitAllocator.h │ │ │ ├── EAWebkitSTLWrapper.h │ │ │ └── internal │ │ │ │ ├── EAWebKitAssert.h │ │ │ │ ├── EAWebKitDomainFilter.h │ │ │ │ ├── EAWebKitJavascriptBinding.h │ │ │ │ ├── EAWebKitJavascriptDebugger.h │ │ │ │ ├── EAWebKitLog.h │ │ │ │ ├── EAWebKitNewDelete.h │ │ │ │ ├── EAWebKitSort.h │ │ │ │ ├── EAWebKitString.h │ │ │ │ ├── EAWebKitTextWrapper.h │ │ │ │ ├── EAWebKitUtfXmlWrapper.h │ │ │ │ ├── EAWebKitViewHelper.h │ │ │ │ ├── EAWebkitEASTLHelpers.h │ │ │ │ ├── EAWebkitNodeListContainer.h │ │ │ │ ├── EAWebkitOverlaySurfaceArrayContainer.h │ │ │ │ ├── InputBinding │ │ │ │ ├── EAWebKitDOMWalker.h │ │ │ │ ├── EAWebKitDocumentNavigationDelegates.h │ │ │ │ ├── EAWebKitDocumentNavigator.h │ │ │ │ ├── EAWebKitEventListener.h │ │ │ │ ├── EAWebKitPolarRegion.h │ │ │ │ └── EAWebKitUtils.h │ │ │ │ ├── icu │ │ │ │ └── include │ │ │ │ │ └── common │ │ │ │ │ ├── bmpset.h │ │ │ │ │ ├── brkeng.h │ │ │ │ │ ├── charstr.h │ │ │ │ │ ├── cmemory.h │ │ │ │ │ ├── cpputils.h │ │ │ │ │ ├── cstring.h │ │ │ │ │ ├── cwchar.h │ │ │ │ │ ├── dictbe.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── localsvc.h │ │ │ │ │ ├── locbased.h │ │ │ │ │ ├── locmap.h │ │ │ │ │ ├── locutil.h │ │ │ │ │ ├── msvcres.h │ │ │ │ │ ├── mutex.h │ │ │ │ │ ├── propname.h │ │ │ │ │ ├── punycode.h │ │ │ │ │ ├── putilimp.h │ │ │ │ │ ├── rbbidata.h │ │ │ │ │ ├── rbbinode.h │ │ │ │ │ ├── rbbirb.h │ │ │ │ │ ├── rbbirpt.h │ │ │ │ │ ├── rbbiscan.h │ │ │ │ │ ├── rbbisetb.h │ │ │ │ │ ├── rbbitblb.h │ │ │ │ │ ├── ruleiter.h │ │ │ │ │ ├── serv.h │ │ │ │ │ ├── servloc.h │ │ │ │ │ ├── servnotf.h │ │ │ │ │ ├── sprpimpl.h │ │ │ │ │ ├── triedict.h │ │ │ │ │ ├── uarrsort.h │ │ │ │ │ ├── uassert.h │ │ │ │ │ ├── ubidi_props.h │ │ │ │ │ ├── ubidiimp.h │ │ │ │ │ ├── ubrkimpl.h │ │ │ │ │ ├── ucase.h │ │ │ │ │ ├── ucln.h │ │ │ │ │ ├── ucln_cmn.h │ │ │ │ │ ├── ucmndata.h │ │ │ │ │ ├── ucnv_bld.h │ │ │ │ │ ├── ucnv_cnv.h │ │ │ │ │ ├── ucnv_ext.h │ │ │ │ │ ├── ucnv_imp.h │ │ │ │ │ ├── ucnv_io.h │ │ │ │ │ ├── ucnvmbcs.h │ │ │ │ │ ├── ucol_swp.h │ │ │ │ │ ├── udatamem.h │ │ │ │ │ ├── udataswp.h │ │ │ │ │ ├── uenumimp.h │ │ │ │ │ ├── uhash.h │ │ │ │ │ ├── uinvchar.h │ │ │ │ │ ├── ulocimp.h │ │ │ │ │ ├── umapfile.h │ │ │ │ │ ├── umutex.h │ │ │ │ │ ├── unicode │ │ │ │ │ ├── brkiter.h │ │ │ │ │ ├── caniter.h │ │ │ │ │ ├── chariter.h │ │ │ │ │ ├── dbbi.h │ │ │ │ │ ├── docmain.h │ │ │ │ │ ├── dtintrv.h │ │ │ │ │ ├── locid.h │ │ │ │ │ ├── normlzr.h │ │ │ │ │ ├── parseerr.h │ │ │ │ │ ├── parsepos.h │ │ │ │ │ ├── platform.h.in │ │ │ │ │ ├── ppalmos.h │ │ │ │ │ ├── putil.h │ │ │ │ │ ├── pwin32.h │ │ │ │ │ ├── rbbi.h │ │ │ │ │ ├── rep.h │ │ │ │ │ ├── resbund.h │ │ │ │ │ ├── schriter.h │ │ │ │ │ ├── strenum.h │ │ │ │ │ ├── symtable.h │ │ │ │ │ ├── ubidi.h │ │ │ │ │ ├── ubrk.h │ │ │ │ │ ├── ucasemap.h │ │ │ │ │ ├── ucat.h │ │ │ │ │ ├── uchar.h │ │ │ │ │ ├── uchriter.h │ │ │ │ │ ├── uclean.h │ │ │ │ │ ├── ucnv.h │ │ │ │ │ ├── ucnv_cb.h │ │ │ │ │ ├── ucnv_err.h │ │ │ │ │ ├── uconfig.h │ │ │ │ │ ├── udata.h │ │ │ │ │ ├── udeprctd.h │ │ │ │ │ ├── udraft.h │ │ │ │ │ ├── uenum.h │ │ │ │ │ ├── uidna.h │ │ │ │ │ ├── uintrnal.h │ │ │ │ │ ├── uiter.h │ │ │ │ │ ├── uloc.h │ │ │ │ │ ├── umachine.h │ │ │ │ │ ├── umisc.h │ │ │ │ │ ├── unifilt.h │ │ │ │ │ ├── unifunct.h │ │ │ │ │ ├── unimatch.h │ │ │ │ │ ├── uniset.h │ │ │ │ │ ├── unistr.h │ │ │ │ │ ├── unorm.h │ │ │ │ │ ├── uobject.h │ │ │ │ │ ├── uobslete.h │ │ │ │ │ ├── urename.h │ │ │ │ │ ├── urep.h │ │ │ │ │ ├── ures.h │ │ │ │ │ ├── uscript.h │ │ │ │ │ ├── uset.h │ │ │ │ │ ├── usetiter.h │ │ │ │ │ ├── ushape.h │ │ │ │ │ ├── uspoof.h │ │ │ │ │ ├── usprep.h │ │ │ │ │ ├── ustring.h │ │ │ │ │ ├── usystem.h │ │ │ │ │ ├── utext.h │ │ │ │ │ ├── utf.h │ │ │ │ │ ├── utf16.h │ │ │ │ │ ├── utf32.h │ │ │ │ │ ├── utf8.h │ │ │ │ │ ├── utf_old.h │ │ │ │ │ ├── utrace.h │ │ │ │ │ ├── utypes.h │ │ │ │ │ └── uversion.h │ │ │ │ │ ├── unisetspan.h │ │ │ │ │ ├── unorm_it.h │ │ │ │ │ ├── unormimp.h │ │ │ │ │ ├── uprops.h │ │ │ │ │ ├── uresdata.h │ │ │ │ │ ├── uresimp.h │ │ │ │ │ ├── usc_impl.h │ │ │ │ │ ├── uset_imp.h │ │ │ │ │ ├── ustr_cnv.h │ │ │ │ │ ├── ustr_imp.h │ │ │ │ │ ├── ustrenum.h │ │ │ │ │ ├── ustrfmt.h │ │ │ │ │ ├── util.h │ │ │ │ │ ├── utracimp.h │ │ │ │ │ ├── utrie.h │ │ │ │ │ ├── uvector.h │ │ │ │ │ ├── uvectr32.h │ │ │ │ │ └── wintz.h │ │ │ │ └── libiconv │ │ │ │ └── include │ │ │ │ ├── iconv.h │ │ │ │ ├── libcharset.h │ │ │ │ └── localcharset.h │ │ └── coreallocator │ │ │ ├── detail │ │ │ └── macro_impl.h │ │ │ ├── icoreallocator.h │ │ │ ├── icoreallocator_interface.h │ │ │ ├── icoreallocatormacros.h │ │ │ ├── icorealloclistener.h │ │ │ └── version.h │ ├── IV │ │ ├── CIVCam.cpp │ │ ├── CIVCam.h │ │ ├── CIVCheckpoint.cpp │ │ ├── CIVCheckpoint.h │ │ ├── CIVDynamicEntity.cpp │ │ ├── CIVDynamicEntity.h │ │ ├── CIVEntity.cpp │ │ ├── CIVEntity.h │ │ ├── CIVEvent.cpp │ │ ├── CIVEvent.h │ │ ├── CIVModelInfo.cpp │ │ ├── CIVModelInfo.h │ │ ├── CIVObject.cpp │ │ ├── CIVObject.h │ │ ├── CIVPad.cpp │ │ ├── CIVPad.h │ │ ├── CIVPadData.cpp │ │ ├── CIVPadData.h │ │ ├── CIVPed.cpp │ │ ├── CIVPed.h │ │ ├── CIVPedFactory.h │ │ ├── CIVPedMoveBlend.h │ │ ├── CIVPedTaskManager.cpp │ │ ├── CIVPedTaskManager.h │ │ ├── CIVPedWeaponSlot.cpp │ │ ├── CIVPedWeaponSlot.h │ │ ├── CIVPedWeapons.cpp │ │ ├── CIVPedWeapons.h │ │ ├── CIVPhysical.cpp │ │ ├── CIVPhysical.h │ │ ├── CIVPhysics.h │ │ ├── CIVPlayerInfo.cpp │ │ ├── CIVPlayerInfo.h │ │ ├── CIVPlayerPed.cpp │ │ ├── CIVPlayerPed.h │ │ ├── CIVPool.cpp │ │ ├── CIVPool.h │ │ ├── CIVStreaming.cpp │ │ ├── CIVStreaming.h │ │ ├── CIVTask.cpp │ │ ├── CIVTask.h │ │ ├── CIVTrain.cpp │ │ ├── CIVTrain.h │ │ ├── CIVVehicle.cpp │ │ ├── CIVVehicle.h │ │ ├── CIVVehicleFactory.h │ │ ├── CIVWeapon.cpp │ │ ├── CIVWeapon.h │ │ ├── CIVWeaponInfo.cpp │ │ ├── CIVWeaponInfo.h │ │ ├── CIVWeather.cpp │ │ ├── CIVWeather.h │ │ ├── CIVWorld.cpp │ │ └── CIVWorld.h │ ├── IVCommon.h │ ├── IVTasks.cpp │ ├── IVTasks.h │ ├── Indicators.cpp │ ├── Indicators.h │ ├── Input.cpp │ ├── Input.h │ ├── KeySync.cpp │ ├── KeySync.h │ ├── Main.cpp │ ├── NativeContext.h │ ├── NativeInvoke.h │ ├── Natives.h │ ├── Natives │ │ ├── AudioNatives.cpp │ │ ├── AudioNatives.h │ │ ├── ClientNatives.cpp │ │ ├── ClientNatives.h │ │ ├── GUINatives.cpp │ │ ├── GUINatives.h │ │ ├── PlayerNatives.cpp │ │ ├── PlayerNatives.h │ │ ├── VehicleNatives.cpp │ │ └── VehicleNatives.h │ ├── NativesList.h │ ├── ScriptHook.cpp │ ├── ScriptHook.h │ ├── Scripting.h │ ├── ScriptingDirty.h │ ├── ScriptingEnums.h │ ├── TrafficLights.cpp │ ├── TrafficLights.h │ ├── detours.h │ └── detours.lib ├── CrashReporter │ ├── Client.CrashReporter.vcxproj │ ├── Client.CrashReporter.vcxproj.filters │ ├── Client.CrashReporter.vcxproj.user │ ├── Images │ │ ├── Button_Close.bmp │ │ ├── Button_Send.bmp │ │ └── get.bmp │ ├── icon.ico │ ├── main.cpp │ ├── main.h │ ├── rc.rc │ └── resource.h ├── LaunchHelper │ ├── Client.LaunchHelper.vcxproj │ ├── Client.LaunchHelper.vcxproj.filters │ ├── Main.cpp │ ├── StdInc.cpp │ └── StdInc.h ├── Launcher │ ├── Client.Launcher.vcxproj │ ├── Client.Launcher.vcxproj.filters │ ├── Launcher.rc │ ├── Main.cpp │ ├── Resource.h │ ├── StdInc.cpp │ ├── StdInc.h │ └── res │ │ └── Launcher.ico └── VFS │ ├── CVFS.cpp │ ├── CVFS.h │ ├── Client.VFS.vcxproj │ ├── Client.VFS.vcxproj.filters │ ├── Main.cpp │ ├── Rijndael.cpp │ ├── Rijndael.h │ ├── Util │ ├── Main.cpp │ ├── VFSModule.Util.vcxproj │ ├── VFSModule.Util.vcxproj.filters │ └── makefile │ └── makefile ├── IVMP.sln ├── LICENSE ├── Logo ├── IVMPLogoHiRes.png ├── LogoOld │ ├── HiResolutionLogo │ │ ├── I.png │ │ ├── IVMPLogoHiRes.png │ │ ├── M.png │ │ ├── P.png │ │ ├── Thumbs.db │ │ ├── V.png │ │ └── colon.png │ └── Logo │ │ ├── I.png │ │ ├── IVMPLogo.png │ │ ├── M.png │ │ ├── P.png │ │ ├── Thumbs.db │ │ ├── V.png │ │ └── colon.png ├── RakNet.png ├── RakNetFull.png ├── Thumbs.db └── icon1.ico ├── Network └── Core │ ├── CNetClient.cpp │ ├── CNetClient.h │ ├── CNetServer.cpp │ ├── CNetServer.h │ ├── CRakNetInterface.h │ ├── Main.cpp │ ├── Network.Core.vcxproj │ ├── Network.Core.vcxproj.filters │ ├── RakNet │ ├── AutopatcherPatchContext.h │ ├── AutopatcherRepositoryInterface.h │ ├── Base64Encoder.cpp │ ├── Base64Encoder.h │ ├── BitStream.cpp │ ├── BitStream.h │ ├── CCRakNetSlidingWindow.cpp │ ├── CCRakNetSlidingWindow.h │ ├── CCRakNetUDT.cpp │ ├── CCRakNetUDT.h │ ├── CheckSum.cpp │ ├── CheckSum.h │ ├── CloudClient.cpp │ ├── CloudClient.h │ ├── CloudCommon.cpp │ ├── CloudCommon.h │ ├── CloudServer.cpp │ ├── CloudServer.h │ ├── CommandParserInterface.cpp │ ├── CommandParserInterface.h │ ├── ConnectionGraph2.cpp │ ├── ConnectionGraph2.h │ ├── ConsoleServer.cpp │ ├── ConsoleServer.h │ ├── DS_BPlusTree.h │ ├── DS_BinarySearchTree.h │ ├── DS_BytePool.cpp │ ├── DS_BytePool.h │ ├── DS_ByteQueue.cpp │ ├── DS_ByteQueue.h │ ├── DS_Hash.h │ ├── DS_Heap.h │ ├── DS_HuffmanEncodingTree.cpp │ ├── DS_HuffmanEncodingTree.h │ ├── DS_HuffmanEncodingTreeFactory.h │ ├── DS_HuffmanEncodingTreeNode.h │ ├── DS_LinkedList.h │ ├── DS_List.h │ ├── DS_Map.h │ ├── DS_MemoryPool.h │ ├── DS_Multilist.h │ ├── DS_OrderedChannelHeap.h │ ├── DS_OrderedList.h │ ├── DS_Queue.h │ ├── DS_QueueLinkedList.h │ ├── DS_RangeList.h │ ├── DS_Table.cpp │ ├── DS_Table.h │ ├── DS_ThreadsafeAllocatingQueue.h │ ├── DS_Tree.h │ ├── DS_WeightedGraph.h │ ├── DataCompressor.cpp │ ├── DataCompressor.h │ ├── DirectoryDeltaTransfer.cpp │ ├── DirectoryDeltaTransfer.h │ ├── DynDNS.cpp │ ├── DynDNS.h │ ├── EmailSender.cpp │ ├── EmailSender.h │ ├── EmptyHeader.h │ ├── EncodeClassName.cpp │ ├── EpochTimeToString.cpp │ ├── EpochTimeToString.h │ ├── Export.h │ ├── FileList.cpp │ ├── FileList.h │ ├── FileListNodeContext.h │ ├── FileListTransfer.cpp │ ├── FileListTransfer.h │ ├── FileListTransferCBInterface.h │ ├── FileOperations.cpp │ ├── FileOperations.h │ ├── FormatString.cpp │ ├── FormatString.h │ ├── FullyConnectedMesh2.cpp │ ├── FullyConnectedMesh2.h │ ├── GetTime.cpp │ ├── GetTime.h │ ├── Getche.cpp │ ├── Getche.h │ ├── Gets.cpp │ ├── Gets.h │ ├── GridSectorizer.cpp │ ├── GridSectorizer.h │ ├── HTTPConnection.cpp │ ├── HTTPConnection.h │ ├── HTTPConnection2.cpp │ ├── HTTPConnection2.h │ ├── IncrementalReadInterface.cpp │ ├── IncrementalReadInterface.h │ ├── InternalPacket.h │ ├── Itoa.cpp │ ├── Itoa.h │ ├── Kbhit.h │ ├── LinuxStrings.cpp │ ├── LinuxStrings.h │ ├── LocklessTypes.cpp │ ├── LocklessTypes.h │ ├── LogCommandParser.cpp │ ├── LogCommandParser.h │ ├── MTUSize.h │ ├── MessageFilter.cpp │ ├── MessageFilter.h │ ├── MessageIdentifiers.h │ ├── NatPunchthroughClient.cpp │ ├── NatPunchthroughClient.h │ ├── NatPunchthroughServer.cpp │ ├── NatPunchthroughServer.h │ ├── NatTypeDetectionClient.cpp │ ├── NatTypeDetectionClient.h │ ├── NatTypeDetectionCommon.cpp │ ├── NatTypeDetectionCommon.h │ ├── NatTypeDetectionServer.cpp │ ├── NatTypeDetectionServer.h │ ├── NativeFeatureIncludes.h │ ├── NativeFeatureIncludesOverrides.h │ ├── NativeTypes.h │ ├── NetworkIDManager.cpp │ ├── NetworkIDManager.h │ ├── NetworkIDObject.cpp │ ├── NetworkIDObject.h │ ├── PS3Includes.h │ ├── PacketConsoleLogger.cpp │ ├── PacketConsoleLogger.h │ ├── PacketFileLogger.cpp │ ├── PacketFileLogger.h │ ├── PacketLogger.cpp │ ├── PacketLogger.h │ ├── PacketOutputWindowLogger.cpp │ ├── PacketOutputWindowLogger.h │ ├── PacketPool.h │ ├── PacketPriority.h │ ├── PacketizedTCP.cpp │ ├── PacketizedTCP.h │ ├── PluginInterface2.cpp │ ├── PluginInterface2.h │ ├── RPC4Plugin.cpp │ ├── RPC4Plugin.h │ ├── Rackspace.cpp │ ├── Rackspace.h │ ├── RakAlloca.h │ ├── RakAssert.h │ ├── RakMemoryOverride.cpp │ ├── RakMemoryOverride.h │ ├── RakNetCommandParser.cpp │ ├── RakNetCommandParser.h │ ├── RakNetDefines.h │ ├── RakNetDefinesOverrides.h │ ├── RakNetSmartPtr.h │ ├── RakNetSocket.cpp │ ├── RakNetSocket.h │ ├── RakNetSocket2.cpp │ ├── RakNetSocket2.h │ ├── RakNetSocket2_360_720.cpp │ ├── RakNetSocket2_Berkley.cpp │ ├── RakNetSocket2_Berkley_NativeClient.cpp │ ├── RakNetSocket2_NativeClient.cpp │ ├── RakNetSocket2_PS3_PS4.cpp │ ├── RakNetSocket2_Vita.cpp │ ├── RakNetSocket2_WindowsStore8.cpp │ ├── RakNetSocket2_Windows_Linux.cpp │ ├── RakNetSocket2_Windows_Linux_360.cpp │ ├── RakNetStatistics.cpp │ ├── RakNetStatistics.h │ ├── RakNetTime.h │ ├── RakNetTransport2.cpp │ ├── RakNetTransport2.h │ ├── RakNetTypes.cpp │ ├── RakNetTypes.h │ ├── RakNetVersion.h │ ├── RakPeer.cpp │ ├── RakPeer.h │ ├── RakPeerInterface.h │ ├── RakSleep.cpp │ ├── RakSleep.h │ ├── RakString.cpp │ ├── RakString.h │ ├── RakThread.cpp │ ├── RakThread.h │ ├── RakWString.cpp │ ├── RakWString.h │ ├── Rand.cpp │ ├── Rand.h │ ├── ReadyEvent.cpp │ ├── ReadyEvent.h │ ├── RefCountedObj.h │ ├── RelayPlugin.cpp │ ├── RelayPlugin.h │ ├── ReliabilityLayer.cpp │ ├── ReliabilityLayer.h │ ├── ReplicaEnums.h │ ├── ReplicaManager3.cpp │ ├── ReplicaManager3.h │ ├── Router2.cpp │ ├── Router2.h │ ├── SHA1.cpp │ ├── SHA1.h │ ├── SecureHandshake.cpp │ ├── SecureHandshake.h │ ├── SendToThread.cpp │ ├── SendToThread.h │ ├── SignaledEvent.cpp │ ├── SignaledEvent.h │ ├── SimpleMutex.cpp │ ├── SimpleMutex.h │ ├── SimpleTCPServer.h │ ├── SingleProducerConsumer.h │ ├── SocketDefines.h │ ├── SocketIncludes.h │ ├── SocketLayer.cpp │ ├── SocketLayer.h │ ├── StatisticsHistory.cpp │ ├── StatisticsHistory.h │ ├── StringCompressor.cpp │ ├── StringCompressor.h │ ├── StringTable.cpp │ ├── StringTable.h │ ├── SuperFastHash.cpp │ ├── SuperFastHash.h │ ├── TCPInterface.cpp │ ├── TCPInterface.h │ ├── TableSerializer.cpp │ ├── TableSerializer.h │ ├── TeamBalancer.cpp │ ├── TeamBalancer.h │ ├── TeamManager.cpp │ ├── TeamManager.h │ ├── TelnetTransport.cpp │ ├── TelnetTransport.h │ ├── ThreadPool.h │ ├── ThreadsafePacketLogger.cpp │ ├── ThreadsafePacketLogger.h │ ├── TransportInterface.h │ ├── TwoWayAuthentication.cpp │ ├── TwoWayAuthentication.h │ ├── UDPForwarder.cpp │ ├── UDPForwarder.h │ ├── UDPProxyClient.cpp │ ├── UDPProxyClient.h │ ├── UDPProxyCommon.h │ ├── UDPProxyCoordinator.cpp │ ├── UDPProxyCoordinator.h │ ├── UDPProxyServer.cpp │ ├── UDPProxyServer.h │ ├── VariableDeltaSerializer.cpp │ ├── VariableDeltaSerializer.h │ ├── VariableListDeltaTracker.cpp │ ├── VariableListDeltaTracker.h │ ├── VariadicSQLParser.cpp │ ├── VariadicSQLParser.h │ ├── VitaIncludes.cpp │ ├── VitaIncludes.h │ ├── WSAStartupSingleton.cpp │ ├── WSAStartupSingleton.h │ ├── WindowsIncludes.h │ ├── XBox360Includes.h │ ├── _FindFirst.cpp │ ├── _FindFirst.h │ ├── gettimeofday.cpp │ ├── gettimeofday.h │ ├── rdlmalloc-options.h │ ├── rdlmalloc.cpp │ └── rdlmalloc.h │ ├── StdInc.cpp │ ├── StdInc.h │ └── makefile ├── README.MD ├── Release Tools ├── 7z.dll ├── 7z.exe ├── LICENSE ├── installer_generator │ ├── Build_Install_Script.exe │ ├── Build_Install_Script.vcproj │ ├── build_install_script.cpp │ ├── icon.ico │ ├── installer_template.nsi │ └── nsis │ │ ├── Bin │ │ ├── GenPat.exe │ │ ├── LibraryLocal.exe │ │ ├── MakeLangId.exe │ │ ├── RegTool.bin │ │ └── zip2exe.exe │ │ ├── Contrib │ │ ├── Graphics │ │ │ ├── Checks │ │ │ │ ├── big.bmp │ │ │ │ ├── classic-cross.bmp │ │ │ │ ├── classic.bmp │ │ │ │ ├── colorful.bmp │ │ │ │ ├── grey-cross.bmp │ │ │ │ ├── grey.bmp │ │ │ │ ├── modern.bmp │ │ │ │ ├── red-round.bmp │ │ │ │ ├── red.bmp │ │ │ │ ├── simple-round.bmp │ │ │ │ ├── simple-round2.bmp │ │ │ │ └── simple.bmp │ │ │ ├── Header │ │ │ │ ├── nsis-r.bmp │ │ │ │ ├── nsis.bmp │ │ │ │ ├── orange-nsis.bmp │ │ │ │ ├── orange-r-nsis.bmp │ │ │ │ ├── orange-r.bmp │ │ │ │ ├── orange-uninstall-nsis.bmp │ │ │ │ ├── orange-uninstall-r-nsis.bmp │ │ │ │ ├── orange-uninstall-r.bmp │ │ │ │ ├── orange-uninstall.bmp │ │ │ │ ├── orange.bmp │ │ │ │ └── win.bmp │ │ │ ├── Icons │ │ │ │ ├── arrow-install.ico │ │ │ │ ├── arrow-uninstall.ico │ │ │ │ ├── arrow2-install.ico │ │ │ │ ├── arrow2-uninstall.ico │ │ │ │ ├── box-install.ico │ │ │ │ ├── box-uninstall.ico │ │ │ │ ├── classic-install.ico │ │ │ │ ├── classic-uninstall.ico │ │ │ │ ├── llama-blue.ico │ │ │ │ ├── llama-grey.ico │ │ │ │ ├── modern-install-blue-full.ico │ │ │ │ ├── modern-install-blue.ico │ │ │ │ ├── modern-install-colorful.ico │ │ │ │ ├── modern-install-full.ico │ │ │ │ ├── modern-install.ico │ │ │ │ ├── modern-uninstall-blue-full.ico │ │ │ │ ├── modern-uninstall-blue.ico │ │ │ │ ├── modern-uninstall-colorful.ico │ │ │ │ ├── modern-uninstall-full.ico │ │ │ │ ├── modern-uninstall.ico │ │ │ │ ├── nsis1-install.ico │ │ │ │ ├── nsis1-uninstall.ico │ │ │ │ ├── orange-install-nsis.ico │ │ │ │ ├── orange-install.ico │ │ │ │ ├── orange-uninstall-nsis.ico │ │ │ │ ├── orange-uninstall.ico │ │ │ │ ├── pixel-install.ico │ │ │ │ ├── pixel-uninstall.ico │ │ │ │ ├── win-install.ico │ │ │ │ └── win-uninstall.ico │ │ │ └── Wizard │ │ │ │ ├── arrow.bmp │ │ │ │ ├── llama.bmp │ │ │ │ ├── nsis.bmp │ │ │ │ ├── nullsoft.bmp │ │ │ │ ├── orange-nsis.bmp │ │ │ │ ├── orange-uninstall-nsis.bmp │ │ │ │ ├── orange-uninstall.bmp │ │ │ │ ├── orange.bmp │ │ │ │ └── win.bmp │ │ ├── Language files │ │ │ ├── Afrikaans.nlf │ │ │ ├── Afrikaans.nsh │ │ │ ├── Albanian.nlf │ │ │ ├── Albanian.nsh │ │ │ ├── Arabic.nlf │ │ │ ├── Arabic.nsh │ │ │ ├── Basque.nlf │ │ │ ├── Basque.nsh │ │ │ ├── Belarusian.nlf │ │ │ ├── Belarusian.nsh │ │ │ ├── Bosnian.nlf │ │ │ ├── Bosnian.nsh │ │ │ ├── Breton.nlf │ │ │ ├── Breton.nsh │ │ │ ├── Bulgarian.nlf │ │ │ ├── Bulgarian.nsh │ │ │ ├── Catalan.nlf │ │ │ ├── Catalan.nsh │ │ │ ├── Croatian.nlf │ │ │ ├── Croatian.nsh │ │ │ ├── Czech.nlf │ │ │ ├── Czech.nsh │ │ │ ├── Danish.nlf │ │ │ ├── Danish.nsh │ │ │ ├── Dutch.nlf │ │ │ ├── Dutch.nsh │ │ │ ├── English.nlf │ │ │ ├── English.nsh │ │ │ ├── Esperanto.nlf │ │ │ ├── Esperanto.nsh │ │ │ ├── Estonian.nlf │ │ │ ├── Estonian.nsh │ │ │ ├── Farsi.nlf │ │ │ ├── Farsi.nsh │ │ │ ├── Finnish.nlf │ │ │ ├── Finnish.nsh │ │ │ ├── French.nlf │ │ │ ├── French.nsh │ │ │ ├── Galician.nlf │ │ │ ├── Galician.nsh │ │ │ ├── German.nlf │ │ │ ├── German.nsh │ │ │ ├── Greek.nlf │ │ │ ├── Greek.nsh │ │ │ ├── Hebrew.nlf │ │ │ ├── Hebrew.nsh │ │ │ ├── Hungarian.nlf │ │ │ ├── Hungarian.nsh │ │ │ ├── Icelandic.nlf │ │ │ ├── Icelandic.nsh │ │ │ ├── Indonesian.nlf │ │ │ ├── Indonesian.nsh │ │ │ ├── Irish.nlf │ │ │ ├── Irish.nsh │ │ │ ├── Italian.nlf │ │ │ ├── Italian.nsh │ │ │ ├── Japanese.nlf │ │ │ ├── Japanese.nsh │ │ │ ├── Korean.nlf │ │ │ ├── Korean.nsh │ │ │ ├── Kurdish.nlf │ │ │ ├── Kurdish.nsh │ │ │ ├── Latvian.nlf │ │ │ ├── Latvian.nsh │ │ │ ├── Lithuanian.nlf │ │ │ ├── Lithuanian.nsh │ │ │ ├── Luxembourgish.nlf │ │ │ ├── Luxembourgish.nsh │ │ │ ├── Macedonian.nlf │ │ │ ├── Macedonian.nsh │ │ │ ├── Malay.nlf │ │ │ ├── Malay.nsh │ │ │ ├── Mongolian.nlf │ │ │ ├── Mongolian.nsh │ │ │ ├── Norwegian.nlf │ │ │ ├── Norwegian.nsh │ │ │ ├── NorwegianNynorsk.nlf │ │ │ ├── NorwegianNynorsk.nsh │ │ │ ├── Polish.nlf │ │ │ ├── Polish.nsh │ │ │ ├── Portuguese.nlf │ │ │ ├── Portuguese.nsh │ │ │ ├── PortugueseBR.nlf │ │ │ ├── PortugueseBR.nsh │ │ │ ├── Romanian.nlf │ │ │ ├── Romanian.nsh │ │ │ ├── Russian.nlf │ │ │ ├── Russian.nsh │ │ │ ├── Serbian.nlf │ │ │ ├── Serbian.nsh │ │ │ ├── SerbianLatin.nlf │ │ │ ├── SerbianLatin.nsh │ │ │ ├── SimpChinese.nlf │ │ │ ├── SimpChinese.nsh │ │ │ ├── Slovak.nlf │ │ │ ├── Slovak.nsh │ │ │ ├── Slovenian.nlf │ │ │ ├── Slovenian.nsh │ │ │ ├── Spanish.nlf │ │ │ ├── Spanish.nsh │ │ │ ├── SpanishInternational.nlf │ │ │ ├── SpanishInternational.nsh │ │ │ ├── Swedish.nlf │ │ │ ├── Swedish.nsh │ │ │ ├── Thai.nlf │ │ │ ├── Thai.nsh │ │ │ ├── TradChinese.nlf │ │ │ ├── TradChinese.nsh │ │ │ ├── Turkish.nlf │ │ │ ├── Turkish.nsh │ │ │ ├── Ukrainian.nlf │ │ │ ├── Ukrainian.nsh │ │ │ ├── Uzbek.nlf │ │ │ ├── Uzbek.nsh │ │ │ ├── Welsh.nlf │ │ │ └── Welsh.nsh │ │ ├── Modern UI 2 │ │ │ ├── Deprecated.nsh │ │ │ ├── Interface.nsh │ │ │ ├── Localization.nsh │ │ │ ├── MUI2.nsh │ │ │ ├── Pages.nsh │ │ │ └── Pages │ │ │ │ ├── Components.nsh │ │ │ │ ├── Directory.nsh │ │ │ │ ├── Finish.nsh │ │ │ │ ├── InstallFiles.nsh │ │ │ │ ├── License.nsh │ │ │ │ ├── StartMenu.nsh │ │ │ │ ├── UninstallConfirm.nsh │ │ │ │ └── Welcome.nsh │ │ ├── Modern UI │ │ │ ├── System.nsh │ │ │ └── ioSpecial.ini │ │ ├── UIs │ │ │ ├── default.exe │ │ │ ├── modern.exe │ │ │ ├── modern_headerbmp.exe │ │ │ ├── modern_headerbmpr.exe │ │ │ ├── modern_nodesc.exe │ │ │ ├── modern_smalldesc.exe │ │ │ └── sdbarker_tiny.exe │ │ └── zip2exe │ │ │ ├── Base.nsh │ │ │ ├── Classic.nsh │ │ │ └── Modern.nsh │ │ ├── Include │ │ ├── Colors.nsh │ │ ├── FileFunc.nsh │ │ ├── InstallOptions.nsh │ │ ├── LangFile.nsh │ │ ├── Library.nsh │ │ ├── LogicLib.nsh │ │ ├── MUI.nsh │ │ ├── MUI2.nsh │ │ ├── Memento.nsh │ │ ├── MultiUser.nsh │ │ ├── Sections.nsh │ │ ├── StrFunc.nsh │ │ ├── TextFunc.nsh │ │ ├── UpgradeDLL.nsh │ │ ├── Util.nsh │ │ ├── VB6RunTime.nsh │ │ ├── VPatchLib.nsh │ │ ├── Win │ │ │ ├── WinDef.nsh │ │ │ ├── WinError.nsh │ │ │ ├── WinNT.nsh │ │ │ └── WinUser.nsh │ │ ├── WinCore.nsh │ │ ├── WinMessages.nsh │ │ ├── WinVer.nsh │ │ ├── WordFunc.nsh │ │ ├── nsDialogs.nsh │ │ └── x64.nsh │ │ ├── Menu │ │ ├── images │ │ │ ├── header.gif │ │ │ ├── line.gif │ │ │ └── site.gif │ │ └── index.html │ │ ├── Plugins │ │ ├── AdvSplash.dll │ │ ├── Banner.dll │ │ ├── BgImage.dll │ │ ├── Dialer.dll │ │ ├── InstallOptions.dll │ │ ├── LangDLL.dll │ │ ├── Math.dll │ │ ├── NSISdl.dll │ │ ├── Splash.dll │ │ ├── StartMenu.dll │ │ ├── System.dll │ │ ├── TypeLib.dll │ │ ├── UserInfo.dll │ │ ├── VPatch.dll │ │ ├── nsDialogs.dll │ │ └── nsExec.dll │ │ ├── Stubs │ │ ├── bzip2 │ │ ├── bzip2_solid │ │ ├── lzma │ │ ├── lzma_solid │ │ ├── uninst │ │ ├── zlib │ │ └── zlib_solid │ │ ├── makensis.exe │ │ └── nsisconf.nsh ├── linux_redist.sh ├── modules_redist_nightly.bat ├── nightly.bat ├── nightly.sh ├── redist_gen.bat ├── redist_gen_nightly.bat ├── sdk_redist.bat └── sdk_redist_nightly.bat ├── Server ├── Core │ ├── C3DLabels.cpp │ ├── C3DLabels.h │ ├── CActorManager.cpp │ ├── CActorManager.h │ ├── CBlipManager.cpp │ ├── CBlipManager.h │ ├── CCheckpoint.cpp │ ├── CCheckpoint.h │ ├── CCheckpointManager.cpp │ ├── CCheckpointManager.h │ ├── CClientFileManager.cpp │ ├── CClientFileManager.h │ ├── CMasterList.cpp │ ├── CMasterList.h │ ├── CModule.cpp │ ├── CModule.h │ ├── CModuleManager.cpp │ ├── CModuleManager.h │ ├── CNetworkManager.cpp │ ├── CNetworkManager.h │ ├── CObjectManager.cpp │ ├── CObjectManager.h │ ├── CPickupManager.cpp │ ├── CPickupManager.h │ ├── CPlayer.cpp │ ├── CPlayer.h │ ├── CPlayerManager.cpp │ ├── CPlayerManager.h │ ├── CQuery.cpp │ ├── CQuery.h │ ├── CServer.cpp │ ├── CServer.h │ ├── CServerPacketHandler.cpp │ ├── CServerPacketHandler.h │ ├── CServerRPCHandler.cpp │ ├── CServerRPCHandler.h │ ├── CVehicle.cpp │ ├── CVehicle.h │ ├── CVehicleManager.cpp │ ├── CVehicleManager.h │ ├── CWebserver.cpp │ ├── CWebserver.h │ ├── ClientScriptTransfer.cpp │ ├── ClientScriptTransfer.h │ ├── Interfaces │ │ ├── CActorManagerInterface.h │ │ ├── CBlipManagerInterface.h │ │ ├── CCheckpointManagerInterface.h │ │ ├── CEventsInterface.h │ │ ├── CModuleInterface.h │ │ ├── CModuleManagerInterface.h │ │ ├── CNetworkManagerInterface.h │ │ ├── CObjectManagerInterface.h │ │ ├── CPickupManagerInterface.h │ │ ├── CPlayerInterface.h │ │ ├── CPlayerManagerInterface.h │ │ ├── CScriptingManagerInterface.h │ │ ├── CSquirrelInterface.h │ │ ├── CTimeInterface.h │ │ ├── CTrafficLightsInterface.h │ │ ├── CVehicleInterface.h │ │ ├── CVehicleManagerInterface.h │ │ ├── InterfaceCommon.h │ │ ├── copy.bat │ │ └── exclude.txt │ ├── Main.cpp │ ├── Main.h │ ├── ModuleNatives │ │ ├── ActorModuleNatives.cpp │ │ ├── ActorNatives.h │ │ ├── AreaModuleNatives.cpp │ │ ├── AreaNatives.h │ │ ├── BlipModuleNatives.cpp │ │ ├── BlipNatives.h │ │ ├── CheckpointModuleNatives.cpp │ │ ├── CheckpointNatives.h │ │ ├── HashModuleNatives.cpp │ │ ├── HashNatives.h │ │ ├── Interface │ │ │ ├── IActorNatives.h │ │ │ ├── IAreaNatives.h │ │ │ ├── IBlipNatives.h │ │ │ ├── ICheckpointNatives.h │ │ │ ├── IHashNatives.h │ │ │ ├── IModuleNatives.h │ │ │ ├── IObjectNatives.h │ │ │ ├── IPickupNatives.h │ │ │ ├── IPlayerNatives.h │ │ │ ├── IScriptNatives.h │ │ │ ├── IServerNatives.h │ │ │ ├── IVehicleNatives.h │ │ │ └── IWorldNatives.h │ │ ├── ModuleNatives.h │ │ ├── ObjectModuleNatives.cpp │ │ ├── ObjectNatives.h │ │ ├── PickupModuleNatives.cpp │ │ ├── PickupNatives.h │ │ ├── PlayerModuleNatives.cpp │ │ ├── PlayerNatives.h │ │ ├── ScriptModuleNatives.cpp │ │ ├── ScriptNatives.h │ │ ├── ServerModuleNatives.cpp │ │ ├── ServerNatives.h │ │ ├── VehicleModuleNatives.cpp │ │ ├── VehicleNatives.h │ │ ├── WorldModuleNatives.cpp │ │ └── WorldNatives.h │ ├── Natives.h │ ├── Natives │ │ ├── 3DLabelNatives.cpp │ │ ├── 3DLabelNatives.h │ │ ├── ActorNatives.cpp │ │ ├── ActorNatives.h │ │ ├── BlipNatives.cpp │ │ ├── BlipNatives.h │ │ ├── CheckpointNatives.cpp │ │ ├── CheckpointNatives.h │ │ ├── ObjectNatives.cpp │ │ ├── ObjectNatives.h │ │ ├── PickupNatives.cpp │ │ ├── PickupNatives.h │ │ ├── PlayerNatives.cpp │ │ ├── PlayerNatives.h │ │ ├── ScriptNatives.cpp │ │ ├── ScriptNatives.h │ │ ├── ServerNatives.cpp │ │ ├── ServerNatives.h │ │ ├── SystemNatives.cpp │ │ ├── SystemNatives.h │ │ ├── VehicleNatives.cpp │ │ └── VehicleNatives.h │ ├── Server.Core.vcxproj │ ├── Server.Core.vcxproj.filters │ ├── make.sh │ ├── makefile │ ├── resource.h │ └── sdk_make.bat └── Launcher │ ├── Main.cpp │ ├── Server.Launcher.rc │ ├── Server.Launcher.vcxproj │ ├── Server.Launcher.vcxproj.filters │ ├── StdInc.cpp │ ├── StdInc.h │ └── makefile ├── Shared ├── CEvents.cpp ├── CEvents.h ├── CExceptionHandler.cpp ├── CExceptionHandler.h ├── CFileChecksum.h ├── CLibrary.cpp ├── CLibrary.h ├── CLogFile.cpp ├── CLogFile.h ├── CRijndael.cpp ├── CRijndael.h ├── CSQLite.cpp ├── CSQLite.h ├── CSettings.cpp ├── CSettings.h ├── CString.cpp ├── CString.h ├── CXML.cpp ├── CXML.h ├── Common.h ├── Game │ ├── CControlState.cpp │ ├── CControlState.h │ ├── CTime.cpp │ ├── CTime.h │ ├── CTrafficLights.cpp │ └── CTrafficLights.h ├── Linux.cpp ├── Linux.h ├── Math │ ├── CMath.h │ └── CVector3.h ├── Network │ ├── CBitStream.cpp │ ├── CBitStream.h │ ├── CHttpClient.cpp │ ├── CHttpClient.h │ ├── CNetClientInterface.h │ ├── CNetServerInterface.h │ ├── CNetStats.h │ ├── CNetworkModule.cpp │ ├── CNetworkModule.h │ ├── CPacket.h │ ├── CPacketHandler.cpp │ ├── CPacketHandler.h │ ├── CPlayerSocket.h │ ├── CRPCHandler.cpp │ ├── CRPCHandler.h │ ├── PacketChannels.h │ ├── PacketIdentifiers.h │ ├── PacketPriorities.h │ ├── PacketReliabilities.h │ └── RPCIdentifiers.h ├── Patcher │ ├── CPatcher.cpp │ └── CPatcher.h ├── SHA256.h ├── Scripting │ ├── CGlobalsManager.cpp │ ├── CGlobalsManager.h │ ├── CScriptTimer.cpp │ ├── CScriptTimer.h │ ├── CScriptTimerManager.cpp │ ├── CScriptTimerManager.h │ ├── CScriptingManager.cpp │ ├── CScriptingManager.h │ ├── CSquirrel.cpp │ ├── CSquirrel.h │ ├── CSquirrelArguments.cpp │ ├── CSquirrelArguments.h │ └── Natives │ │ ├── AreaNatives.cpp │ │ ├── AreaNatives.h │ │ ├── EventNatives.cpp │ │ ├── EventNatives.h │ │ ├── HashNatives.cpp │ │ ├── HashNatives.h │ │ ├── Natives.h │ │ ├── SQLiteNatives.cpp │ │ ├── SQLiteNatives.h │ │ ├── TimerNatives.cpp │ │ ├── TimerNatives.h │ │ ├── WorldNatives.cpp │ │ ├── WorldNatives.h │ │ ├── XMLNatives.cpp │ │ └── XMLNatives.h ├── Server │ └── CServerInterface.h ├── SharedUtility.cpp ├── SharedUtility.h ├── Threading │ ├── CMutex.cpp │ ├── CMutex.h │ ├── CThread.cpp │ └── CThread.h └── VFS │ ├── CVFSInterface.h │ ├── CVFSInterface_Common.h │ ├── CVFSModule.cpp │ ├── CVFSModule.h │ └── CVFSModule_Functions.h ├── Vendor ├── DXSDK │ ├── Include │ │ ├── D3D10.h │ │ ├── D3D10_1.h │ │ ├── D3D10_1shader.h │ │ ├── D3D10effect.h │ │ ├── D3D10shader.h │ │ ├── D3DX10.h │ │ ├── D3DX10core.h │ │ ├── D3DX10math.h │ │ ├── D3DX10math.inl │ │ ├── D3DX10mesh.h │ │ ├── D3DX10tex.h │ │ ├── DXGI.h │ │ ├── DXGIType.h │ │ ├── DxErr.h │ │ ├── PIXPlugin.h │ │ ├── X3DAudio.h │ │ ├── XAPO.h │ │ ├── XAPOBase.h │ │ ├── XAPOFX.h │ │ ├── XInput.h │ │ ├── audiodefs.h │ │ ├── comdecl.h │ │ ├── d3d10misc.h │ │ ├── d3d10sdklayers.h │ │ ├── d3d9.h │ │ ├── d3d9caps.h │ │ ├── d3d9types.h │ │ ├── d3dx10async.h │ │ ├── d3dx9.h │ │ ├── d3dx9anim.h │ │ ├── d3dx9core.h │ │ ├── d3dx9effect.h │ │ ├── d3dx9math.h │ │ ├── d3dx9math.inl │ │ ├── d3dx9mesh.h │ │ ├── d3dx9shader.h │ │ ├── d3dx9shape.h │ │ ├── d3dx9tex.h │ │ ├── d3dx9xof.h │ │ ├── ddraw.h │ │ ├── dinput.h │ │ ├── dinputd.h │ │ ├── dsconf.h │ │ ├── dsetup.h │ │ ├── dsound.h │ │ ├── dvp.h │ │ ├── dxdiag.h │ │ ├── dxerr9.h │ │ ├── dxfile.h │ │ ├── dxsdkver.h │ │ ├── gameux.h │ │ ├── multimon.h │ │ ├── rmxfguid.h │ │ ├── rmxftmpl.h │ │ ├── rpcsal_old.h │ │ ├── xact3.h │ │ ├── xact3d3.h │ │ ├── xact3wb.h │ │ ├── xaudio2.h │ │ ├── xaudio2fx.h │ │ └── xma2defs.h │ ├── Lib │ │ ├── DxErr.lib │ │ ├── DxErr9.lib │ │ ├── X3DAudio.lib │ │ ├── XAPOFX.lib │ │ ├── XInput.lib │ │ ├── d3d10.lib │ │ ├── d3d10_1.lib │ │ ├── d3d10_1d.lib │ │ ├── d3d9.lib │ │ ├── d3dx10.lib │ │ ├── d3dx10d.lib │ │ ├── d3dx9.lib │ │ ├── d3dx9d.lib │ │ ├── d3dxof.lib │ │ ├── ddraw.lib │ │ ├── dinput8.lib │ │ ├── dsetup.lib │ │ ├── dsound.lib │ │ ├── dxgi.lib │ │ ├── dxguid.lib │ │ ├── xapobase.lib │ │ └── xapobased.lib │ └── SDK.txt ├── EAWebkit │ └── EAWebkit.zip ├── SILLY-0.1.0 │ ├── SILLY.vcxproj │ ├── SILLY.vcxproj.filters │ ├── SILLY.vcxproj.user │ ├── include │ │ ├── SILLY.h │ │ ├── SILLYBase.h │ │ ├── SILLYDataSource.h │ │ ├── SILLYDataSource.icpp │ │ ├── SILLYFileDataSource.h │ │ ├── SILLYFileDataSource.icpp │ │ ├── SILLYImage.h │ │ ├── SILLYImage.icpp │ │ ├── SILLYImageContext.h │ │ ├── SILLYImageContext.icpp │ │ ├── SILLYImageLoader.h │ │ ├── SILLYImageLoader.icpp │ │ ├── SILLYImageLoaderManager.h │ │ ├── SILLYImageLoaderManager.icpp │ │ ├── SILLYMemoryDataSource.h │ │ ├── SILLYMemoryDataSource.icpp │ │ ├── SILLYOptions.h │ │ └── loaders │ │ │ ├── SILLYJPGImageContext.h │ │ │ ├── SILLYJPGImageContext.icpp │ │ │ ├── SILLYJPGImageLoader.h │ │ │ ├── SILLYJPGImageLoader.icpp │ │ │ ├── SILLYPNGImageContext.h │ │ │ ├── SILLYPNGImageContext.icpp │ │ │ ├── SILLYPNGImageLoader.h │ │ │ ├── SILLYPNGImageLoader.icpp │ │ │ ├── SILLYTGAImageContext.h │ │ │ ├── SILLYTGAImageContext.icpp │ │ │ ├── SILLYTGAImageLoader.h │ │ │ └── SILLYTGAImageLoader.icpp │ └── src │ │ ├── SILLYDataSource.cpp │ │ ├── SILLYFileDataSource.cpp │ │ ├── SILLYImage.cpp │ │ ├── SILLYImageContext.cpp │ │ ├── SILLYImageLoader.cpp │ │ ├── SILLYImageLoaderManager.cpp │ │ ├── SILLYMemoryDataSource.cpp │ │ └── loaders │ │ ├── SILLYJPGImageContext.cpp │ │ ├── SILLYJPGImageLoader.cpp │ │ ├── SILLYPNGImageContext.cpp │ │ ├── SILLYPNGImageLoader.cpp │ │ ├── SILLYTGAImageContext.cpp │ │ └── SILLYTGAImageLoader.cpp ├── Squirrel │ ├── makefile │ ├── sqapi.cpp │ ├── sqarray.h │ ├── sqbaselib.cpp │ ├── sqclass.cpp │ ├── sqclass.h │ ├── sqclosure.h │ ├── sqcompiler.cpp │ ├── sqcompiler.h │ ├── sqdebug.cpp │ ├── sqfuncproto.h │ ├── sqfuncstate.cpp │ ├── sqfuncstate.h │ ├── sqlexer.cpp │ ├── sqlexer.h │ ├── sqmem.cpp │ ├── sqobject.cpp │ ├── sqobject.h │ ├── sqopcodes.h │ ├── sqpcheader.h │ ├── sqstate.cpp │ ├── sqstate.h │ ├── sqstdaux.cpp │ ├── sqstdaux.h │ ├── sqstdblob.cpp │ ├── sqstdblob.h │ ├── sqstdblobimpl.h │ ├── sqstdio.cpp │ ├── sqstdio.h │ ├── sqstdmath.cpp │ ├── sqstdmath.h │ ├── sqstdrex.cpp │ ├── sqstdstream.cpp │ ├── sqstdstream.h │ ├── sqstdstring.cpp │ ├── sqstdstring.h │ ├── sqstdsystem.cpp │ ├── sqstdsystem.h │ ├── sqstring.h │ ├── sqtable.cpp │ ├── sqtable.h │ ├── squirrel.h │ ├── squserdata.h │ ├── squtils.h │ ├── sqvm.cpp │ └── sqvm.h ├── bass │ ├── bass.h │ └── bass.lib ├── expat-2.0.1 │ ├── ascii.h │ ├── asciitab.h │ ├── expat.h │ ├── expat_external.h │ ├── expat_static.vcxproj │ ├── expat_static.vcxproj.filters │ ├── iasciitab.h │ ├── internal.h │ ├── latin1tab.h │ ├── nametab.h │ ├── utf8tab.h │ ├── winconfig.h │ ├── xmlparse.c │ ├── xmlrole.c │ ├── xmlrole.h │ ├── xmltok.c │ ├── xmltok.h │ ├── xmltok_impl.c │ ├── xmltok_impl.h │ └── xmltok_ns.c ├── fat-io │ ├── fat-io.vcxproj │ ├── fat-io.vcxproj.filters │ ├── fat_access.c │ ├── fat_access.h │ ├── fat_cache.c │ ├── fat_cache.h │ ├── fat_defs.h │ ├── fat_filelib.c │ ├── fat_filelib.h │ ├── fat_format.c │ ├── fat_format.h │ ├── fat_misc.c │ ├── fat_misc.h │ ├── fat_opts.h │ ├── fat_string.c │ ├── fat_string.h │ ├── fat_table.c │ ├── fat_table.h │ ├── fat_types.h │ ├── fat_write.c │ ├── fat_write.h │ └── makefile ├── include │ ├── FreeImage.h │ ├── corona.h │ ├── freetype │ │ ├── config │ │ │ ├── ftconfig.h │ │ │ ├── ftheader.h │ │ │ ├── ftmodule.h │ │ │ ├── ftoption.h │ │ │ └── ftstdlib.h │ │ ├── freetype.h │ │ ├── ftadvanc.h │ │ ├── ftautoh.h │ │ ├── ftbbox.h │ │ ├── ftbdf.h │ │ ├── ftbitmap.h │ │ ├── ftbzip2.h │ │ ├── ftcache.h │ │ ├── ftcffdrv.h │ │ ├── ftchapters.h │ │ ├── ftcid.h │ │ ├── fterrdef.h │ │ ├── fterrors.h │ │ ├── ftfntfmt.h │ │ ├── ftgasp.h │ │ ├── ftglyph.h │ │ ├── ftgxval.h │ │ ├── ftgzip.h │ │ ├── ftimage.h │ │ ├── ftincrem.h │ │ ├── ftlcdfil.h │ │ ├── ftlist.h │ │ ├── ftlzw.h │ │ ├── ftmac.h │ │ ├── ftmm.h │ │ ├── ftmodapi.h │ │ ├── ftmoderr.h │ │ ├── ftotval.h │ │ ├── ftoutln.h │ │ ├── ftpfr.h │ │ ├── ftrender.h │ │ ├── ftsizes.h │ │ ├── ftsnames.h │ │ ├── ftstroke.h │ │ ├── ftsynth.h │ │ ├── ftsystem.h │ │ ├── fttrigon.h │ │ ├── ftttdrv.h │ │ ├── fttypes.h │ │ ├── ftwinfnt.h │ │ ├── ftxf86.h │ │ ├── internal │ │ │ ├── autohint.h │ │ │ ├── ftcalc.h │ │ │ ├── ftdebug.h │ │ │ ├── ftdriver.h │ │ │ ├── ftgloadr.h │ │ │ ├── fthash.h │ │ │ ├── ftmemory.h │ │ │ ├── ftobjs.h │ │ │ ├── ftpic.h │ │ │ ├── ftrfork.h │ │ │ ├── ftserv.h │ │ │ ├── ftstream.h │ │ │ ├── fttrace.h │ │ │ ├── ftvalid.h │ │ │ ├── internal.h │ │ │ ├── pcftypes.h │ │ │ ├── psaux.h │ │ │ ├── pshints.h │ │ │ ├── services │ │ │ │ ├── svbdf.h │ │ │ │ ├── svcid.h │ │ │ │ ├── svfntfmt.h │ │ │ │ ├── svgldict.h │ │ │ │ ├── svgxval.h │ │ │ │ ├── svkern.h │ │ │ │ ├── svmetric.h │ │ │ │ ├── svmm.h │ │ │ │ ├── svotval.h │ │ │ │ ├── svpfr.h │ │ │ │ ├── svpostnm.h │ │ │ │ ├── svprop.h │ │ │ │ ├── svpscmap.h │ │ │ │ ├── svpsinfo.h │ │ │ │ ├── svsfnt.h │ │ │ │ ├── svttcmap.h │ │ │ │ ├── svtteng.h │ │ │ │ ├── svttglyf.h │ │ │ │ ├── svwinfnt.h │ │ │ │ └── svxf86nm.h │ │ │ ├── sfnt.h │ │ │ ├── t1types.h │ │ │ └── tttypes.h │ │ ├── t1tables.h │ │ ├── ttnameid.h │ │ ├── tttables.h │ │ ├── tttags.h │ │ └── ttunpat.h │ ├── ft2build.h │ ├── pcre.h │ ├── tiff.h │ ├── tiffconf.h │ ├── tiffio.h │ └── tiffvers.h ├── jpeg-6b │ ├── ansi2knr.c │ ├── cderror.h │ ├── cdjpeg.c │ ├── cdjpeg.h │ ├── cjpeg.c │ ├── ckconfig.c │ ├── djpeg.c │ ├── example.c │ ├── jcapimin.c │ ├── jcapistd.c │ ├── jccoefct.c │ ├── jccolor.c │ ├── jcdctmgr.c │ ├── jchuff.c │ ├── jchuff.h │ ├── jcinit.c │ ├── jcmainct.c │ ├── jcmarker.c │ ├── jcmaster.c │ ├── jcomapi.c │ ├── jconfig.h │ ├── jcparam.c │ ├── jcphuff.c │ ├── jcprepct.c │ ├── jcsample.c │ ├── jctrans.c │ ├── jdapimin.c │ ├── jdapistd.c │ ├── jdatadst.c │ ├── jdatasrc.c │ ├── jdcoefct.c │ ├── jdcolor.c │ ├── jdct.h │ ├── jddctmgr.c │ ├── jdhuff.c │ ├── jdhuff.h │ ├── jdinput.c │ ├── jdmainct.c │ ├── jdmarker.c │ ├── jdmaster.c │ ├── jdmerge.c │ ├── jdphuff.c │ ├── jdpostct.c │ ├── jdsample.c │ ├── jdtrans.c │ ├── jerror.c │ ├── jerror.h │ ├── jfdctflt.c │ ├── jfdctfst.c │ ├── jfdctint.c │ ├── jidctflt.c │ ├── jidctfst.c │ ├── jidctint.c │ ├── jidctred.c │ ├── jinclude.h │ ├── jmemansi.c │ ├── jmemdos.c │ ├── jmemmac.c │ ├── jmemmgr.c │ ├── jmemname.c │ ├── jmemnobs.c │ ├── jmemsys.h │ ├── jmorecfg.h │ ├── jpegint.h │ ├── jpeglib.h │ ├── jpegtran.c │ ├── jquant1.c │ ├── jquant2.c │ ├── jutils.c │ ├── jversion.h │ ├── projects │ │ ├── libjpeg.vcxproj │ │ ├── libjpeg.vcxproj.filters │ │ └── libjpeg.vcxproj.user │ ├── rdbmp.c │ ├── rdcolmap.c │ ├── rdgif.c │ ├── rdjpgcom.c │ ├── rdppm.c │ ├── rdrle.c │ ├── rdswitch.c │ ├── rdtarga.c │ ├── transupp.c │ ├── transupp.h │ ├── wrbmp.c │ ├── wrgif.c │ ├── wrjpgcom.c │ ├── wrppm.c │ ├── wrrle.c │ └── wrtarga.c ├── lib │ └── static │ │ ├── freetype.lib │ │ ├── freetype_d.lib │ │ ├── pcre.lib │ │ └── pcre_d.lib ├── lpng142 │ ├── png.c │ ├── png.h │ ├── pngconf.h │ ├── pngerror.c │ ├── pngget.c │ ├── pngmem.c │ ├── pngpread.c │ ├── pngpriv.h │ ├── pngread.c │ ├── pngrio.c │ ├── pngrtran.c │ ├── pngrutil.c │ ├── pngset.c │ ├── pngtest.c │ ├── pngtrans.c │ ├── pngwio.c │ ├── pngwrite.c │ ├── pngwtran.c │ ├── pngwutil.c │ └── projects │ │ ├── libpng.vcxproj │ │ ├── libpng.vcxproj.filters │ │ └── libpng.vcxproj.user ├── md5 │ ├── md5.cpp │ └── md5.h ├── mongoose │ ├── mongoose.c │ └── mongoose.h ├── sqlite │ ├── makefile │ ├── shell.c │ ├── sqlite3.c │ ├── sqlite3.def │ ├── sqlite3.h │ └── sqlite3ext.h ├── tinyxml │ ├── makefile │ ├── ticpp.cpp │ ├── ticpp.h │ ├── ticpprc.h │ ├── tinystr.cpp │ ├── tinystr.h │ ├── tinyxml.cpp │ ├── tinyxml.h │ ├── tinyxmlerror.cpp │ └── tinyxmlparser.cpp └── zlib-1.2.5 │ ├── adler32.c │ ├── compress.c │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── example.c │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── minigzip.c │ ├── projects │ ├── zlib.vcxproj │ └── zlib.vcxproj.filters │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zlib.h │ ├── zutil.c │ └── zutil.h └── makefile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/.gitignore -------------------------------------------------------------------------------- /Binary/CEGUI/fonts/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/CEGUI/fonts/DejaVuSans.ttf -------------------------------------------------------------------------------- /Binary/CEGUI/fonts/Legal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/CEGUI/fonts/Legal.txt -------------------------------------------------------------------------------- /Binary/CEGUI/fonts/bankgothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/CEGUI/fonts/bankgothic.ttf -------------------------------------------------------------------------------- /Binary/CEGUI/fonts/pricedown.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/CEGUI/fonts/pricedown.ttf -------------------------------------------------------------------------------- /Binary/CEGUI/fonts/sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/CEGUI/fonts/sans.ttf -------------------------------------------------------------------------------- /Binary/CEGUI/fonts/tahoma-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/CEGUI/fonts/tahoma-bold.ttf -------------------------------------------------------------------------------- /Binary/CEGUI/fonts/tahoma.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/CEGUI/fonts/tahoma.ttf -------------------------------------------------------------------------------- /Binary/CEGUI/imagesets/Download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/CEGUI/imagesets/Download.png -------------------------------------------------------------------------------- /Binary/CEGUI/imagesets/RakNet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/CEGUI/imagesets/RakNet.png -------------------------------------------------------------------------------- /Binary/CEGUI/imagesets/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/CEGUI/imagesets/ReadMe.txt -------------------------------------------------------------------------------- /Binary/CEGUI/imagesets/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/CEGUI/imagesets/chat.png -------------------------------------------------------------------------------- /Binary/CEGUI/xml_schemas/Font.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/CEGUI/xml_schemas/Font.xsd -------------------------------------------------------------------------------- /Binary/bass.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/bass.dll -------------------------------------------------------------------------------- /Binary/clientscripts/audio_test.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/clientscripts/audio_test.nut -------------------------------------------------------------------------------- /Binary/clientscripts/scoreboard.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/clientscripts/scoreboard.nut -------------------------------------------------------------------------------- /Binary/files/helloWorld.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/files/helloWorld.xml -------------------------------------------------------------------------------- /Binary/files/testDB: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Binary/resources/RadioLogo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/resources/RadioLogo.dat -------------------------------------------------------------------------------- /Binary/resources/hud.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/resources/hud.dat -------------------------------------------------------------------------------- /Binary/scripts/arraytest.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/scripts/arraytest.nut -------------------------------------------------------------------------------- /Binary/scripts/busdriver.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/scripts/busdriver.nut -------------------------------------------------------------------------------- /Binary/scripts/consoleadmin.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/scripts/consoleadmin.nut -------------------------------------------------------------------------------- /Binary/scripts/dofile.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/scripts/dofile.nut -------------------------------------------------------------------------------- /Binary/scripts/dofile2.nut: -------------------------------------------------------------------------------- 1 | function dofileTest() 2 | { 3 | log("worked"); 4 | } -------------------------------------------------------------------------------- /Binary/scripts/eventtest.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/scripts/eventtest.nut -------------------------------------------------------------------------------- /Binary/scripts/filetest.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/scripts/filetest.nut -------------------------------------------------------------------------------- /Binary/scripts/indicators.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/scripts/indicators.nut -------------------------------------------------------------------------------- /Binary/scripts/limitchat.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/scripts/limitchat.nut -------------------------------------------------------------------------------- /Binary/scripts/namecheck.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/scripts/namecheck.nut -------------------------------------------------------------------------------- /Binary/scripts/padtest.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/scripts/padtest.nut -------------------------------------------------------------------------------- /Binary/scripts/pickups.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/scripts/pickups.nut -------------------------------------------------------------------------------- /Binary/scripts/reftables.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/scripts/reftables.nut -------------------------------------------------------------------------------- /Binary/scripts/runcode.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/scripts/runcode.nut -------------------------------------------------------------------------------- /Binary/scripts/simple_gamemode.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/scripts/simple_gamemode.nut -------------------------------------------------------------------------------- /Binary/scripts/sqlite.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/scripts/sqlite.nut -------------------------------------------------------------------------------- /Binary/scripts/squirrel samples/hello.nut: -------------------------------------------------------------------------------- 1 | print("Hello World!") -------------------------------------------------------------------------------- /Binary/scripts/timertest.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/scripts/timertest.nut -------------------------------------------------------------------------------- /Binary/scripts/whisper.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/scripts/whisper.nut -------------------------------------------------------------------------------- /Binary/scripts/xml.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/scripts/xml.nut -------------------------------------------------------------------------------- /Binary/sdk/ivmp_sdk_module/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/sdk/ivmp_sdk_module/Main.cpp -------------------------------------------------------------------------------- /Binary/sdk/ivmp_sdk_module/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/sdk/ivmp_sdk_module/makefile -------------------------------------------------------------------------------- /Binary/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/settings.xml -------------------------------------------------------------------------------- /Binary/webserver/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Binary/webserver/index.html -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- 1 | Copyright (c) 2009-2013 IV:MP Team -------------------------------------------------------------------------------- /Client/Core/AimSync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/AimSync.cpp -------------------------------------------------------------------------------- /Client/Core/AimSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/AimSync.h -------------------------------------------------------------------------------- /Client/Core/AnimGroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/AnimGroups.h -------------------------------------------------------------------------------- /Client/Core/C3DLabels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/C3DLabels.cpp -------------------------------------------------------------------------------- /Client/Core/C3DLabels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/C3DLabels.h -------------------------------------------------------------------------------- /Client/Core/CActorManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CActorManager.cpp -------------------------------------------------------------------------------- /Client/Core/CActorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CActorManager.h -------------------------------------------------------------------------------- /Client/Core/CAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CAudio.cpp -------------------------------------------------------------------------------- /Client/Core/CAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CAudio.h -------------------------------------------------------------------------------- /Client/Core/CAudioManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CAudioManager.cpp -------------------------------------------------------------------------------- /Client/Core/CAudioManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CAudioManager.h -------------------------------------------------------------------------------- /Client/Core/CBlipManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CBlipManager.cpp -------------------------------------------------------------------------------- /Client/Core/CBlipManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CBlipManager.h -------------------------------------------------------------------------------- /Client/Core/CCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CCamera.cpp -------------------------------------------------------------------------------- /Client/Core/CCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CCamera.h -------------------------------------------------------------------------------- /Client/Core/CChatWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CChatWindow.cpp -------------------------------------------------------------------------------- /Client/Core/CChatWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CChatWindow.h -------------------------------------------------------------------------------- /Client/Core/CCheckpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CCheckpoint.cpp -------------------------------------------------------------------------------- /Client/Core/CCheckpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CCheckpoint.h -------------------------------------------------------------------------------- /Client/Core/CCheckpointManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CCheckpointManager.cpp -------------------------------------------------------------------------------- /Client/Core/CCheckpointManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CCheckpointManager.h -------------------------------------------------------------------------------- /Client/Core/CClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CClient.cpp -------------------------------------------------------------------------------- /Client/Core/CClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CClient.h -------------------------------------------------------------------------------- /Client/Core/CClientPacketHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CClientPacketHandler.h -------------------------------------------------------------------------------- /Client/Core/CClientRPCHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CClientRPCHandler.cpp -------------------------------------------------------------------------------- /Client/Core/CClientRPCHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CClientRPCHandler.h -------------------------------------------------------------------------------- /Client/Core/CClientScriptManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CClientScriptManager.h -------------------------------------------------------------------------------- /Client/Core/CClientTaskManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CClientTaskManager.cpp -------------------------------------------------------------------------------- /Client/Core/CClientTaskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CClientTaskManager.h -------------------------------------------------------------------------------- /Client/Core/CContextDataManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CContextDataManager.cpp -------------------------------------------------------------------------------- /Client/Core/CContextDataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CContextDataManager.h -------------------------------------------------------------------------------- /Client/Core/CCrashFixes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CCrashFixes.cpp -------------------------------------------------------------------------------- /Client/Core/CCrashFixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CCrashFixes.h -------------------------------------------------------------------------------- /Client/Core/CCredits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CCredits.cpp -------------------------------------------------------------------------------- /Client/Core/CCredits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CCredits.h -------------------------------------------------------------------------------- /Client/Core/CCursorHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CCursorHook.cpp -------------------------------------------------------------------------------- /Client/Core/CCursorHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CCursorHook.h -------------------------------------------------------------------------------- /Client/Core/CCutsceneInteriors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CCutsceneInteriors.h -------------------------------------------------------------------------------- /Client/Core/CD3D9Webkit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CD3D9Webkit.cpp -------------------------------------------------------------------------------- /Client/Core/CD3D9Webkit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CD3D9Webkit.hpp -------------------------------------------------------------------------------- /Client/Core/CDebugView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CDebugView.cpp -------------------------------------------------------------------------------- /Client/Core/CDebugView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CDebugView.h -------------------------------------------------------------------------------- /Client/Core/CDirect3DHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CDirect3DHook.cpp -------------------------------------------------------------------------------- /Client/Core/CDirect3DHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CDirect3DHook.h -------------------------------------------------------------------------------- /Client/Core/CDirectInput8Proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CDirectInput8Proxy.cpp -------------------------------------------------------------------------------- /Client/Core/CDirectInput8Proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CDirectInput8Proxy.h -------------------------------------------------------------------------------- /Client/Core/CDirectInputHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CDirectInputHook.cpp -------------------------------------------------------------------------------- /Client/Core/CDirectInputHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CDirectInputHook.h -------------------------------------------------------------------------------- /Client/Core/CFPSCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CFPSCounter.cpp -------------------------------------------------------------------------------- /Client/Core/CFPSCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CFPSCounter.h -------------------------------------------------------------------------------- /Client/Core/CFileTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CFileTransfer.cpp -------------------------------------------------------------------------------- /Client/Core/CFileTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CFileTransfer.h -------------------------------------------------------------------------------- /Client/Core/CFileTransferManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CFileTransferManager.h -------------------------------------------------------------------------------- /Client/Core/CFireManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CFireManager.cpp -------------------------------------------------------------------------------- /Client/Core/CFireManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CFireManager.h -------------------------------------------------------------------------------- /Client/Core/CGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CGUI.cpp -------------------------------------------------------------------------------- /Client/Core/CGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CGUI.h -------------------------------------------------------------------------------- /Client/Core/CGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CGame.cpp -------------------------------------------------------------------------------- /Client/Core/CGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CGame.h -------------------------------------------------------------------------------- /Client/Core/CGameFileChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CGameFileChecker.cpp -------------------------------------------------------------------------------- /Client/Core/CGameFileChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CGameFileChecker.h -------------------------------------------------------------------------------- /Client/Core/CGraphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CGraphics.cpp -------------------------------------------------------------------------------- /Client/Core/CGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CGraphics.h -------------------------------------------------------------------------------- /Client/Core/CHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CHooks.cpp -------------------------------------------------------------------------------- /Client/Core/CHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CHooks.h -------------------------------------------------------------------------------- /Client/Core/CInputWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CInputWindow.cpp -------------------------------------------------------------------------------- /Client/Core/CInputWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CInputWindow.h -------------------------------------------------------------------------------- /Client/Core/CLocalPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CLocalPlayer.cpp -------------------------------------------------------------------------------- /Client/Core/CLocalPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CLocalPlayer.h -------------------------------------------------------------------------------- /Client/Core/CMainMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CMainMenu.cpp -------------------------------------------------------------------------------- /Client/Core/CMainMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CMainMenu.h -------------------------------------------------------------------------------- /Client/Core/CMasterListQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CMasterListQuery.cpp -------------------------------------------------------------------------------- /Client/Core/CMasterListQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CMasterListQuery.h -------------------------------------------------------------------------------- /Client/Core/CModelManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CModelManager.cpp -------------------------------------------------------------------------------- /Client/Core/CModelManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CModelManager.h -------------------------------------------------------------------------------- /Client/Core/CNameTags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CNameTags.cpp -------------------------------------------------------------------------------- /Client/Core/CNameTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CNameTags.h -------------------------------------------------------------------------------- /Client/Core/CNetworkEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CNetworkEntity.h -------------------------------------------------------------------------------- /Client/Core/CNetworkEntityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CNetworkEntityManager.h -------------------------------------------------------------------------------- /Client/Core/CNetworkManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CNetworkManager.cpp -------------------------------------------------------------------------------- /Client/Core/CNetworkManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CNetworkManager.h -------------------------------------------------------------------------------- /Client/Core/CNetworkPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CNetworkPlayer.cpp -------------------------------------------------------------------------------- /Client/Core/CNetworkPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CNetworkPlayer.h -------------------------------------------------------------------------------- /Client/Core/CNetworkVehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CNetworkVehicle.cpp -------------------------------------------------------------------------------- /Client/Core/CNetworkVehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CNetworkVehicle.h -------------------------------------------------------------------------------- /Client/Core/CObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CObject.cpp -------------------------------------------------------------------------------- /Client/Core/CObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CObject.h -------------------------------------------------------------------------------- /Client/Core/CObjectManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CObjectManager.cpp -------------------------------------------------------------------------------- /Client/Core/CObjectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CObjectManager.h -------------------------------------------------------------------------------- /Client/Core/COffsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/COffsets.cpp -------------------------------------------------------------------------------- /Client/Core/COffsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/COffsets.h -------------------------------------------------------------------------------- /Client/Core/CPatches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CPatches.cpp -------------------------------------------------------------------------------- /Client/Core/CPatches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CPatches.h -------------------------------------------------------------------------------- /Client/Core/CPickup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CPickup.cpp -------------------------------------------------------------------------------- /Client/Core/CPickup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CPickup.h -------------------------------------------------------------------------------- /Client/Core/CPickupManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CPickupManager.cpp -------------------------------------------------------------------------------- /Client/Core/CPickupManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CPickupManager.h -------------------------------------------------------------------------------- /Client/Core/CPlayerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CPlayerManager.cpp -------------------------------------------------------------------------------- /Client/Core/CPlayerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CPlayerManager.h -------------------------------------------------------------------------------- /Client/Core/CPools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CPools.cpp -------------------------------------------------------------------------------- /Client/Core/CPools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CPools.h -------------------------------------------------------------------------------- /Client/Core/CQuickConnect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CQuickConnect.cpp -------------------------------------------------------------------------------- /Client/Core/CQuickConnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CQuickConnect.h -------------------------------------------------------------------------------- /Client/Core/CRemotePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CRemotePlayer.cpp -------------------------------------------------------------------------------- /Client/Core/CRemotePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CRemotePlayer.h -------------------------------------------------------------------------------- /Client/Core/CScreenShot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CScreenShot.cpp -------------------------------------------------------------------------------- /Client/Core/CScreenShot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CScreenShot.h -------------------------------------------------------------------------------- /Client/Core/CServerBrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CServerBrowser.cpp -------------------------------------------------------------------------------- /Client/Core/CServerBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CServerBrowser.h -------------------------------------------------------------------------------- /Client/Core/CServerQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CServerQuery.cpp -------------------------------------------------------------------------------- /Client/Core/CServerQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CServerQuery.h -------------------------------------------------------------------------------- /Client/Core/CSettingsMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CSettingsMenu.cpp -------------------------------------------------------------------------------- /Client/Core/CSettingsMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CSettingsMenu.h -------------------------------------------------------------------------------- /Client/Core/CStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CStreamer.cpp -------------------------------------------------------------------------------- /Client/Core/CStreamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CStreamer.h -------------------------------------------------------------------------------- /Client/Core/CTrains.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CTrains.cpp -------------------------------------------------------------------------------- /Client/Core/CTrains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CTrains.h -------------------------------------------------------------------------------- /Client/Core/CVehicleManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CVehicleManager.cpp -------------------------------------------------------------------------------- /Client/Core/CVehicleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CVehicleManager.h -------------------------------------------------------------------------------- /Client/Core/CXLiveHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CXLiveHook.cpp -------------------------------------------------------------------------------- /Client/Core/CXLiveHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/CXLiveHook.h -------------------------------------------------------------------------------- /Client/Core/Client.Core.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/Client.Core.vcxproj -------------------------------------------------------------------------------- /Client/Core/Commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/Commands.cpp -------------------------------------------------------------------------------- /Client/Core/Commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/Commands.h -------------------------------------------------------------------------------- /Client/Core/EA/EAAssert/eaassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/EA/EAAssert/eaassert.h -------------------------------------------------------------------------------- /Client/Core/EA/EABase/eabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/EA/EABase/eabase.h -------------------------------------------------------------------------------- /Client/Core/EA/EABase/earesult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/EA/EABase/earesult.h -------------------------------------------------------------------------------- /Client/Core/EA/EAIO/Allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/EA/EAIO/Allocator.h -------------------------------------------------------------------------------- /Client/Core/EA/EAIO/EAFileBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/EA/EAIO/EAFileBase.h -------------------------------------------------------------------------------- /Client/Core/EA/EAIO/EAFileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/EA/EAIO/EAFileStream.h -------------------------------------------------------------------------------- /Client/Core/EA/EAIO/EAFileUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/EA/EAIO/EAFileUtil.h -------------------------------------------------------------------------------- /Client/Core/EA/EAIO/EAIniFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/EA/EAIO/EAIniFile.h -------------------------------------------------------------------------------- /Client/Core/EA/EAIO/EAStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/EA/EAIO/EAStream.h -------------------------------------------------------------------------------- /Client/Core/EA/EAIO/EAStreamChild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/EA/EAIO/EAStreamChild.h -------------------------------------------------------------------------------- /Client/Core/EA/EAIO/EAStreamCpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/EA/EAIO/EAStreamCpp.h -------------------------------------------------------------------------------- /Client/Core/EA/EAIO/EAStreamNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/EA/EAIO/EAStreamNull.h -------------------------------------------------------------------------------- /Client/Core/EA/EAIO/FnEncode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/EA/EAIO/FnEncode.h -------------------------------------------------------------------------------- /Client/Core/EA/EAIO/FnMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/EA/EAIO/FnMatch.h -------------------------------------------------------------------------------- /Client/Core/EA/EAIO/PathString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/EA/EAIO/PathString.h -------------------------------------------------------------------------------- /Client/Core/EA/EARaster/EARaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/EA/EARaster/EARaster.h -------------------------------------------------------------------------------- /Client/Core/EA/EAWebKit/EAWebKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/EA/EAWebKit/EAWebKit.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVCam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVCam.cpp -------------------------------------------------------------------------------- /Client/Core/IV/CIVCam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVCam.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVCheckpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVCheckpoint.cpp -------------------------------------------------------------------------------- /Client/Core/IV/CIVCheckpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVCheckpoint.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVDynamicEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVDynamicEntity.cpp -------------------------------------------------------------------------------- /Client/Core/IV/CIVDynamicEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVDynamicEntity.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVEntity.cpp -------------------------------------------------------------------------------- /Client/Core/IV/CIVEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVEntity.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVEvent.cpp -------------------------------------------------------------------------------- /Client/Core/IV/CIVEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVEvent.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVModelInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVModelInfo.cpp -------------------------------------------------------------------------------- /Client/Core/IV/CIVModelInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVModelInfo.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVObject.cpp -------------------------------------------------------------------------------- /Client/Core/IV/CIVObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVObject.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVPad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVPad.cpp -------------------------------------------------------------------------------- /Client/Core/IV/CIVPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVPad.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVPadData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVPadData.cpp -------------------------------------------------------------------------------- /Client/Core/IV/CIVPadData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVPadData.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVPed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVPed.cpp -------------------------------------------------------------------------------- /Client/Core/IV/CIVPed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVPed.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVPedFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVPedFactory.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVPedMoveBlend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVPedMoveBlend.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVPedTaskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVPedTaskManager.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVPedWeaponSlot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVPedWeaponSlot.cpp -------------------------------------------------------------------------------- /Client/Core/IV/CIVPedWeaponSlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVPedWeaponSlot.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVPedWeapons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVPedWeapons.cpp -------------------------------------------------------------------------------- /Client/Core/IV/CIVPedWeapons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVPedWeapons.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVPhysical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVPhysical.cpp -------------------------------------------------------------------------------- /Client/Core/IV/CIVPhysical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVPhysical.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVPhysics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVPhysics.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVPlayerInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVPlayerInfo.cpp -------------------------------------------------------------------------------- /Client/Core/IV/CIVPlayerInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVPlayerInfo.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVPlayerPed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVPlayerPed.cpp -------------------------------------------------------------------------------- /Client/Core/IV/CIVPlayerPed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVPlayerPed.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVPool.cpp -------------------------------------------------------------------------------- /Client/Core/IV/CIVPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVPool.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVStreaming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVStreaming.cpp -------------------------------------------------------------------------------- /Client/Core/IV/CIVStreaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVStreaming.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVTask.cpp -------------------------------------------------------------------------------- /Client/Core/IV/CIVTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVTask.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVTrain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVTrain.cpp -------------------------------------------------------------------------------- /Client/Core/IV/CIVTrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVTrain.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVVehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVVehicle.cpp -------------------------------------------------------------------------------- /Client/Core/IV/CIVVehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVVehicle.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVVehicleFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVVehicleFactory.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVWeapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVWeapon.cpp -------------------------------------------------------------------------------- /Client/Core/IV/CIVWeapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVWeapon.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVWeaponInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVWeaponInfo.cpp -------------------------------------------------------------------------------- /Client/Core/IV/CIVWeaponInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVWeaponInfo.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVWeather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVWeather.cpp -------------------------------------------------------------------------------- /Client/Core/IV/CIVWeather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVWeather.h -------------------------------------------------------------------------------- /Client/Core/IV/CIVWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVWorld.cpp -------------------------------------------------------------------------------- /Client/Core/IV/CIVWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IV/CIVWorld.h -------------------------------------------------------------------------------- /Client/Core/IVCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IVCommon.h -------------------------------------------------------------------------------- /Client/Core/IVTasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IVTasks.cpp -------------------------------------------------------------------------------- /Client/Core/IVTasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/IVTasks.h -------------------------------------------------------------------------------- /Client/Core/Indicators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/Indicators.cpp -------------------------------------------------------------------------------- /Client/Core/Indicators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/Indicators.h -------------------------------------------------------------------------------- /Client/Core/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/Input.cpp -------------------------------------------------------------------------------- /Client/Core/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/Input.h -------------------------------------------------------------------------------- /Client/Core/KeySync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/KeySync.cpp -------------------------------------------------------------------------------- /Client/Core/KeySync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/KeySync.h -------------------------------------------------------------------------------- /Client/Core/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/Main.cpp -------------------------------------------------------------------------------- /Client/Core/NativeContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/NativeContext.h -------------------------------------------------------------------------------- /Client/Core/NativeInvoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/NativeInvoke.h -------------------------------------------------------------------------------- /Client/Core/Natives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/Natives.h -------------------------------------------------------------------------------- /Client/Core/Natives/AudioNatives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/Natives/AudioNatives.h -------------------------------------------------------------------------------- /Client/Core/Natives/ClientNatives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/Natives/ClientNatives.h -------------------------------------------------------------------------------- /Client/Core/Natives/GUINatives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/Natives/GUINatives.cpp -------------------------------------------------------------------------------- /Client/Core/Natives/GUINatives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/Natives/GUINatives.h -------------------------------------------------------------------------------- /Client/Core/Natives/PlayerNatives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/Natives/PlayerNatives.h -------------------------------------------------------------------------------- /Client/Core/NativesList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/NativesList.h -------------------------------------------------------------------------------- /Client/Core/ScriptHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/ScriptHook.cpp -------------------------------------------------------------------------------- /Client/Core/ScriptHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/ScriptHook.h -------------------------------------------------------------------------------- /Client/Core/Scripting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/Scripting.h -------------------------------------------------------------------------------- /Client/Core/ScriptingDirty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/ScriptingDirty.h -------------------------------------------------------------------------------- /Client/Core/ScriptingEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/ScriptingEnums.h -------------------------------------------------------------------------------- /Client/Core/TrafficLights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/TrafficLights.cpp -------------------------------------------------------------------------------- /Client/Core/TrafficLights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/TrafficLights.h -------------------------------------------------------------------------------- /Client/Core/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/detours.h -------------------------------------------------------------------------------- /Client/Core/detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Core/detours.lib -------------------------------------------------------------------------------- /Client/CrashReporter/Images/get.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/CrashReporter/Images/get.bmp -------------------------------------------------------------------------------- /Client/CrashReporter/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/CrashReporter/icon.ico -------------------------------------------------------------------------------- /Client/CrashReporter/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/CrashReporter/main.cpp -------------------------------------------------------------------------------- /Client/CrashReporter/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/CrashReporter/main.h -------------------------------------------------------------------------------- /Client/CrashReporter/rc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/CrashReporter/rc.rc -------------------------------------------------------------------------------- /Client/CrashReporter/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/CrashReporter/resource.h -------------------------------------------------------------------------------- /Client/LaunchHelper/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/LaunchHelper/Main.cpp -------------------------------------------------------------------------------- /Client/LaunchHelper/StdInc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/LaunchHelper/StdInc.cpp -------------------------------------------------------------------------------- /Client/LaunchHelper/StdInc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/LaunchHelper/StdInc.h -------------------------------------------------------------------------------- /Client/Launcher/Launcher.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Launcher/Launcher.rc -------------------------------------------------------------------------------- /Client/Launcher/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Launcher/Main.cpp -------------------------------------------------------------------------------- /Client/Launcher/Resource.h: -------------------------------------------------------------------------------- 1 | #define IDR_ICON 0 2 | -------------------------------------------------------------------------------- /Client/Launcher/StdInc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Launcher/StdInc.cpp -------------------------------------------------------------------------------- /Client/Launcher/StdInc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Launcher/StdInc.h -------------------------------------------------------------------------------- /Client/Launcher/res/Launcher.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/Launcher/res/Launcher.ico -------------------------------------------------------------------------------- /Client/VFS/CVFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/VFS/CVFS.cpp -------------------------------------------------------------------------------- /Client/VFS/CVFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/VFS/CVFS.h -------------------------------------------------------------------------------- /Client/VFS/Client.VFS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/VFS/Client.VFS.vcxproj -------------------------------------------------------------------------------- /Client/VFS/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/VFS/Main.cpp -------------------------------------------------------------------------------- /Client/VFS/Rijndael.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/VFS/Rijndael.cpp -------------------------------------------------------------------------------- /Client/VFS/Rijndael.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/VFS/Rijndael.h -------------------------------------------------------------------------------- /Client/VFS/Util/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/VFS/Util/Main.cpp -------------------------------------------------------------------------------- /Client/VFS/Util/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/VFS/Util/makefile -------------------------------------------------------------------------------- /Client/VFS/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Client/VFS/makefile -------------------------------------------------------------------------------- /IVMP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/IVMP.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/LICENSE -------------------------------------------------------------------------------- /Logo/IVMPLogoHiRes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Logo/IVMPLogoHiRes.png -------------------------------------------------------------------------------- /Logo/LogoOld/HiResolutionLogo/I.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Logo/LogoOld/HiResolutionLogo/I.png -------------------------------------------------------------------------------- /Logo/LogoOld/HiResolutionLogo/M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Logo/LogoOld/HiResolutionLogo/M.png -------------------------------------------------------------------------------- /Logo/LogoOld/HiResolutionLogo/P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Logo/LogoOld/HiResolutionLogo/P.png -------------------------------------------------------------------------------- /Logo/LogoOld/HiResolutionLogo/V.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Logo/LogoOld/HiResolutionLogo/V.png -------------------------------------------------------------------------------- /Logo/LogoOld/Logo/I.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Logo/LogoOld/Logo/I.png -------------------------------------------------------------------------------- /Logo/LogoOld/Logo/IVMPLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Logo/LogoOld/Logo/IVMPLogo.png -------------------------------------------------------------------------------- /Logo/LogoOld/Logo/M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Logo/LogoOld/Logo/M.png -------------------------------------------------------------------------------- /Logo/LogoOld/Logo/P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Logo/LogoOld/Logo/P.png -------------------------------------------------------------------------------- /Logo/LogoOld/Logo/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Logo/LogoOld/Logo/Thumbs.db -------------------------------------------------------------------------------- /Logo/LogoOld/Logo/V.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Logo/LogoOld/Logo/V.png -------------------------------------------------------------------------------- /Logo/LogoOld/Logo/colon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Logo/LogoOld/Logo/colon.png -------------------------------------------------------------------------------- /Logo/RakNet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Logo/RakNet.png -------------------------------------------------------------------------------- /Logo/RakNetFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Logo/RakNetFull.png -------------------------------------------------------------------------------- /Logo/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Logo/Thumbs.db -------------------------------------------------------------------------------- /Logo/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Logo/icon1.ico -------------------------------------------------------------------------------- /Network/Core/CNetClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/CNetClient.cpp -------------------------------------------------------------------------------- /Network/Core/CNetClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/CNetClient.h -------------------------------------------------------------------------------- /Network/Core/CNetServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/CNetServer.cpp -------------------------------------------------------------------------------- /Network/Core/CNetServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/CNetServer.h -------------------------------------------------------------------------------- /Network/Core/CRakNetInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/CRakNetInterface.h -------------------------------------------------------------------------------- /Network/Core/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/Main.cpp -------------------------------------------------------------------------------- /Network/Core/Network.Core.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/Network.Core.vcxproj -------------------------------------------------------------------------------- /Network/Core/RakNet/Base64Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/Base64Encoder.h -------------------------------------------------------------------------------- /Network/Core/RakNet/BitStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/BitStream.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/BitStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/BitStream.h -------------------------------------------------------------------------------- /Network/Core/RakNet/CCRakNetUDT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/CCRakNetUDT.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/CCRakNetUDT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/CCRakNetUDT.h -------------------------------------------------------------------------------- /Network/Core/RakNet/CheckSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/CheckSum.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/CheckSum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/CheckSum.h -------------------------------------------------------------------------------- /Network/Core/RakNet/CloudClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/CloudClient.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/CloudClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/CloudClient.h -------------------------------------------------------------------------------- /Network/Core/RakNet/CloudCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/CloudCommon.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/CloudCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/CloudCommon.h -------------------------------------------------------------------------------- /Network/Core/RakNet/CloudServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/CloudServer.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/CloudServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/CloudServer.h -------------------------------------------------------------------------------- /Network/Core/RakNet/ConsoleServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/ConsoleServer.h -------------------------------------------------------------------------------- /Network/Core/RakNet/DS_BPlusTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/DS_BPlusTree.h -------------------------------------------------------------------------------- /Network/Core/RakNet/DS_BytePool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/DS_BytePool.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/DS_BytePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/DS_BytePool.h -------------------------------------------------------------------------------- /Network/Core/RakNet/DS_ByteQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/DS_ByteQueue.h -------------------------------------------------------------------------------- /Network/Core/RakNet/DS_Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/DS_Hash.h -------------------------------------------------------------------------------- /Network/Core/RakNet/DS_Heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/DS_Heap.h -------------------------------------------------------------------------------- /Network/Core/RakNet/DS_LinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/DS_LinkedList.h -------------------------------------------------------------------------------- /Network/Core/RakNet/DS_List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/DS_List.h -------------------------------------------------------------------------------- /Network/Core/RakNet/DS_Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/DS_Map.h -------------------------------------------------------------------------------- /Network/Core/RakNet/DS_MemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/DS_MemoryPool.h -------------------------------------------------------------------------------- /Network/Core/RakNet/DS_Multilist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/DS_Multilist.h -------------------------------------------------------------------------------- /Network/Core/RakNet/DS_Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/DS_Queue.h -------------------------------------------------------------------------------- /Network/Core/RakNet/DS_RangeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/DS_RangeList.h -------------------------------------------------------------------------------- /Network/Core/RakNet/DS_Table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/DS_Table.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/DS_Table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/DS_Table.h -------------------------------------------------------------------------------- /Network/Core/RakNet/DS_Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/DS_Tree.h -------------------------------------------------------------------------------- /Network/Core/RakNet/DynDNS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/DynDNS.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/DynDNS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/DynDNS.h -------------------------------------------------------------------------------- /Network/Core/RakNet/EmailSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/EmailSender.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/EmailSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/EmailSender.h -------------------------------------------------------------------------------- /Network/Core/RakNet/EmptyHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/EmptyHeader.h -------------------------------------------------------------------------------- /Network/Core/RakNet/EncodeClassName.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Network/Core/RakNet/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/Export.h -------------------------------------------------------------------------------- /Network/Core/RakNet/FileList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/FileList.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/FileList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/FileList.h -------------------------------------------------------------------------------- /Network/Core/RakNet/FormatString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/FormatString.h -------------------------------------------------------------------------------- /Network/Core/RakNet/GetTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/GetTime.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/GetTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/GetTime.h -------------------------------------------------------------------------------- /Network/Core/RakNet/Getche.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/Getche.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/Getche.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/Getche.h -------------------------------------------------------------------------------- /Network/Core/RakNet/Gets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/Gets.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/Gets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/Gets.h -------------------------------------------------------------------------------- /Network/Core/RakNet/Itoa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/Itoa.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/Itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/Itoa.h -------------------------------------------------------------------------------- /Network/Core/RakNet/Kbhit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/Kbhit.h -------------------------------------------------------------------------------- /Network/Core/RakNet/LinuxStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/LinuxStrings.h -------------------------------------------------------------------------------- /Network/Core/RakNet/LocklessTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/LocklessTypes.h -------------------------------------------------------------------------------- /Network/Core/RakNet/MTUSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/MTUSize.h -------------------------------------------------------------------------------- /Network/Core/RakNet/MessageFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/MessageFilter.h -------------------------------------------------------------------------------- /Network/Core/RakNet/NativeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/NativeTypes.h -------------------------------------------------------------------------------- /Network/Core/RakNet/PS3Includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/PS3Includes.h -------------------------------------------------------------------------------- /Network/Core/RakNet/PacketLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/PacketLogger.h -------------------------------------------------------------------------------- /Network/Core/RakNet/PacketPool.h: -------------------------------------------------------------------------------- 1 | // REMOVEME -------------------------------------------------------------------------------- /Network/Core/RakNet/PacketizedTCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/PacketizedTCP.h -------------------------------------------------------------------------------- /Network/Core/RakNet/RPC4Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/RPC4Plugin.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/RPC4Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/RPC4Plugin.h -------------------------------------------------------------------------------- /Network/Core/RakNet/Rackspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/Rackspace.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/Rackspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/Rackspace.h -------------------------------------------------------------------------------- /Network/Core/RakNet/RakAlloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/RakAlloca.h -------------------------------------------------------------------------------- /Network/Core/RakNet/RakAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/RakAssert.h -------------------------------------------------------------------------------- /Network/Core/RakNet/RakNetDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/RakNetDefines.h -------------------------------------------------------------------------------- /Network/Core/RakNet/RakNetDefinesOverrides.h: -------------------------------------------------------------------------------- 1 | // USER EDITABLE FILE 2 | 3 | -------------------------------------------------------------------------------- /Network/Core/RakNet/RakNetSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/RakNetSocket.h -------------------------------------------------------------------------------- /Network/Core/RakNet/RakNetSocket2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/RakNetSocket2.h -------------------------------------------------------------------------------- /Network/Core/RakNet/RakNetTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/RakNetTime.h -------------------------------------------------------------------------------- /Network/Core/RakNet/RakNetTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/RakNetTypes.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/RakNetTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/RakNetTypes.h -------------------------------------------------------------------------------- /Network/Core/RakNet/RakNetVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/RakNetVersion.h -------------------------------------------------------------------------------- /Network/Core/RakNet/RakPeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/RakPeer.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/RakPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/RakPeer.h -------------------------------------------------------------------------------- /Network/Core/RakNet/RakSleep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/RakSleep.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/RakSleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/RakSleep.h -------------------------------------------------------------------------------- /Network/Core/RakNet/RakString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/RakString.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/RakString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/RakString.h -------------------------------------------------------------------------------- /Network/Core/RakNet/RakThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/RakThread.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/RakThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/RakThread.h -------------------------------------------------------------------------------- /Network/Core/RakNet/RakWString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/RakWString.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/RakWString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/RakWString.h -------------------------------------------------------------------------------- /Network/Core/RakNet/Rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/Rand.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/Rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/Rand.h -------------------------------------------------------------------------------- /Network/Core/RakNet/ReadyEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/ReadyEvent.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/ReadyEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/ReadyEvent.h -------------------------------------------------------------------------------- /Network/Core/RakNet/RefCountedObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/RefCountedObj.h -------------------------------------------------------------------------------- /Network/Core/RakNet/RelayPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/RelayPlugin.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/RelayPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/RelayPlugin.h -------------------------------------------------------------------------------- /Network/Core/RakNet/ReplicaEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/ReplicaEnums.h -------------------------------------------------------------------------------- /Network/Core/RakNet/Router2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/Router2.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/Router2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/Router2.h -------------------------------------------------------------------------------- /Network/Core/RakNet/SHA1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/SHA1.cpp -------------------------------------------------------------------------------- /Network/Core/RakNet/SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/SHA1.h -------------------------------------------------------------------------------- /Network/Core/RakNet/SendToThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/SendToThread.h -------------------------------------------------------------------------------- /Network/Core/RakNet/SignaledEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/SignaledEvent.h -------------------------------------------------------------------------------- /Network/Core/RakNet/SimpleTCPServer.h: -------------------------------------------------------------------------------- 1 | // Eraseme -------------------------------------------------------------------------------- /Network/Core/RakNet/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/ThreadPool.h -------------------------------------------------------------------------------- /Network/Core/RakNet/_FindFirst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/_FindFirst.h -------------------------------------------------------------------------------- /Network/Core/RakNet/rdlmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/RakNet/rdlmalloc.h -------------------------------------------------------------------------------- /Network/Core/StdInc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/StdInc.cpp -------------------------------------------------------------------------------- /Network/Core/StdInc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/StdInc.h -------------------------------------------------------------------------------- /Network/Core/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Network/Core/makefile -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/README.MD -------------------------------------------------------------------------------- /Release Tools/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Release Tools/7z.dll -------------------------------------------------------------------------------- /Release Tools/7z.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Release Tools/7z.exe -------------------------------------------------------------------------------- /Release Tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Release Tools/LICENSE -------------------------------------------------------------------------------- /Release Tools/installer_generator/nsis/Include/MUI.nsh: -------------------------------------------------------------------------------- 1 | !include "${NSISDIR}\Contrib\Modern UI\System.nsh" -------------------------------------------------------------------------------- /Release Tools/installer_generator/nsis/Include/MUI2.nsh: -------------------------------------------------------------------------------- 1 | !include "${NSISDIR}\Contrib\Modern UI 2\MUI2.nsh" -------------------------------------------------------------------------------- /Release Tools/linux_redist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Release Tools/linux_redist.sh -------------------------------------------------------------------------------- /Release Tools/nightly.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Release Tools/nightly.bat -------------------------------------------------------------------------------- /Release Tools/nightly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Release Tools/nightly.sh -------------------------------------------------------------------------------- /Release Tools/redist_gen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Release Tools/redist_gen.bat -------------------------------------------------------------------------------- /Release Tools/sdk_redist.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Release Tools/sdk_redist.bat -------------------------------------------------------------------------------- /Server/Core/C3DLabels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/C3DLabels.cpp -------------------------------------------------------------------------------- /Server/Core/C3DLabels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/C3DLabels.h -------------------------------------------------------------------------------- /Server/Core/CActorManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CActorManager.cpp -------------------------------------------------------------------------------- /Server/Core/CActorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CActorManager.h -------------------------------------------------------------------------------- /Server/Core/CBlipManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CBlipManager.cpp -------------------------------------------------------------------------------- /Server/Core/CBlipManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CBlipManager.h -------------------------------------------------------------------------------- /Server/Core/CCheckpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CCheckpoint.cpp -------------------------------------------------------------------------------- /Server/Core/CCheckpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CCheckpoint.h -------------------------------------------------------------------------------- /Server/Core/CCheckpointManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CCheckpointManager.h -------------------------------------------------------------------------------- /Server/Core/CClientFileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CClientFileManager.h -------------------------------------------------------------------------------- /Server/Core/CMasterList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CMasterList.cpp -------------------------------------------------------------------------------- /Server/Core/CMasterList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CMasterList.h -------------------------------------------------------------------------------- /Server/Core/CModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CModule.cpp -------------------------------------------------------------------------------- /Server/Core/CModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CModule.h -------------------------------------------------------------------------------- /Server/Core/CModuleManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CModuleManager.cpp -------------------------------------------------------------------------------- /Server/Core/CModuleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CModuleManager.h -------------------------------------------------------------------------------- /Server/Core/CNetworkManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CNetworkManager.cpp -------------------------------------------------------------------------------- /Server/Core/CNetworkManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CNetworkManager.h -------------------------------------------------------------------------------- /Server/Core/CObjectManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CObjectManager.cpp -------------------------------------------------------------------------------- /Server/Core/CObjectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CObjectManager.h -------------------------------------------------------------------------------- /Server/Core/CPickupManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CPickupManager.cpp -------------------------------------------------------------------------------- /Server/Core/CPickupManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CPickupManager.h -------------------------------------------------------------------------------- /Server/Core/CPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CPlayer.cpp -------------------------------------------------------------------------------- /Server/Core/CPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CPlayer.h -------------------------------------------------------------------------------- /Server/Core/CPlayerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CPlayerManager.cpp -------------------------------------------------------------------------------- /Server/Core/CPlayerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CPlayerManager.h -------------------------------------------------------------------------------- /Server/Core/CQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CQuery.cpp -------------------------------------------------------------------------------- /Server/Core/CQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CQuery.h -------------------------------------------------------------------------------- /Server/Core/CServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CServer.cpp -------------------------------------------------------------------------------- /Server/Core/CServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CServer.h -------------------------------------------------------------------------------- /Server/Core/CServerRPCHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CServerRPCHandler.h -------------------------------------------------------------------------------- /Server/Core/CVehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CVehicle.cpp -------------------------------------------------------------------------------- /Server/Core/CVehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CVehicle.h -------------------------------------------------------------------------------- /Server/Core/CVehicleManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CVehicleManager.cpp -------------------------------------------------------------------------------- /Server/Core/CVehicleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CVehicleManager.h -------------------------------------------------------------------------------- /Server/Core/CWebserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CWebserver.cpp -------------------------------------------------------------------------------- /Server/Core/CWebserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/CWebserver.h -------------------------------------------------------------------------------- /Server/Core/Interfaces/copy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/Interfaces/copy.bat -------------------------------------------------------------------------------- /Server/Core/Interfaces/exclude.txt: -------------------------------------------------------------------------------- 1 | InterfaceCommon.h 2 | copy.bat 3 | exclude.txt -------------------------------------------------------------------------------- /Server/Core/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/Main.cpp -------------------------------------------------------------------------------- /Server/Core/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/Main.h -------------------------------------------------------------------------------- /Server/Core/Natives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/Natives.h -------------------------------------------------------------------------------- /Server/Core/Server.Core.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/Server.Core.vcxproj -------------------------------------------------------------------------------- /Server/Core/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/make.sh -------------------------------------------------------------------------------- /Server/Core/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/makefile -------------------------------------------------------------------------------- /Server/Core/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/resource.h -------------------------------------------------------------------------------- /Server/Core/sdk_make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Core/sdk_make.bat -------------------------------------------------------------------------------- /Server/Launcher/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Launcher/Main.cpp -------------------------------------------------------------------------------- /Server/Launcher/StdInc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Launcher/StdInc.cpp -------------------------------------------------------------------------------- /Server/Launcher/StdInc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Launcher/StdInc.h -------------------------------------------------------------------------------- /Server/Launcher/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Server/Launcher/makefile -------------------------------------------------------------------------------- /Shared/CEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/CEvents.cpp -------------------------------------------------------------------------------- /Shared/CEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/CEvents.h -------------------------------------------------------------------------------- /Shared/CExceptionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/CExceptionHandler.cpp -------------------------------------------------------------------------------- /Shared/CExceptionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/CExceptionHandler.h -------------------------------------------------------------------------------- /Shared/CFileChecksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/CFileChecksum.h -------------------------------------------------------------------------------- /Shared/CLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/CLibrary.cpp -------------------------------------------------------------------------------- /Shared/CLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/CLibrary.h -------------------------------------------------------------------------------- /Shared/CLogFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/CLogFile.cpp -------------------------------------------------------------------------------- /Shared/CLogFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/CLogFile.h -------------------------------------------------------------------------------- /Shared/CRijndael.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/CRijndael.cpp -------------------------------------------------------------------------------- /Shared/CRijndael.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/CRijndael.h -------------------------------------------------------------------------------- /Shared/CSQLite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/CSQLite.cpp -------------------------------------------------------------------------------- /Shared/CSQLite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/CSQLite.h -------------------------------------------------------------------------------- /Shared/CSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/CSettings.cpp -------------------------------------------------------------------------------- /Shared/CSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/CSettings.h -------------------------------------------------------------------------------- /Shared/CString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/CString.cpp -------------------------------------------------------------------------------- /Shared/CString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/CString.h -------------------------------------------------------------------------------- /Shared/CXML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/CXML.cpp -------------------------------------------------------------------------------- /Shared/CXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/CXML.h -------------------------------------------------------------------------------- /Shared/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Common.h -------------------------------------------------------------------------------- /Shared/Game/CControlState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Game/CControlState.cpp -------------------------------------------------------------------------------- /Shared/Game/CControlState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Game/CControlState.h -------------------------------------------------------------------------------- /Shared/Game/CTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Game/CTime.cpp -------------------------------------------------------------------------------- /Shared/Game/CTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Game/CTime.h -------------------------------------------------------------------------------- /Shared/Game/CTrafficLights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Game/CTrafficLights.cpp -------------------------------------------------------------------------------- /Shared/Game/CTrafficLights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Game/CTrafficLights.h -------------------------------------------------------------------------------- /Shared/Linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Linux.cpp -------------------------------------------------------------------------------- /Shared/Linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Linux.h -------------------------------------------------------------------------------- /Shared/Math/CMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Math/CMath.h -------------------------------------------------------------------------------- /Shared/Math/CVector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Math/CVector3.h -------------------------------------------------------------------------------- /Shared/Network/CBitStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Network/CBitStream.cpp -------------------------------------------------------------------------------- /Shared/Network/CBitStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Network/CBitStream.h -------------------------------------------------------------------------------- /Shared/Network/CHttpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Network/CHttpClient.cpp -------------------------------------------------------------------------------- /Shared/Network/CHttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Network/CHttpClient.h -------------------------------------------------------------------------------- /Shared/Network/CNetStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Network/CNetStats.h -------------------------------------------------------------------------------- /Shared/Network/CNetworkModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Network/CNetworkModule.h -------------------------------------------------------------------------------- /Shared/Network/CPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Network/CPacket.h -------------------------------------------------------------------------------- /Shared/Network/CPacketHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Network/CPacketHandler.h -------------------------------------------------------------------------------- /Shared/Network/CPlayerSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Network/CPlayerSocket.h -------------------------------------------------------------------------------- /Shared/Network/CRPCHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Network/CRPCHandler.cpp -------------------------------------------------------------------------------- /Shared/Network/CRPCHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Network/CRPCHandler.h -------------------------------------------------------------------------------- /Shared/Network/PacketChannels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Network/PacketChannels.h -------------------------------------------------------------------------------- /Shared/Network/RPCIdentifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Network/RPCIdentifiers.h -------------------------------------------------------------------------------- /Shared/Patcher/CPatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Patcher/CPatcher.cpp -------------------------------------------------------------------------------- /Shared/Patcher/CPatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Patcher/CPatcher.h -------------------------------------------------------------------------------- /Shared/SHA256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/SHA256.h -------------------------------------------------------------------------------- /Shared/Scripting/CScriptTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Scripting/CScriptTimer.h -------------------------------------------------------------------------------- /Shared/Scripting/CSquirrel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Scripting/CSquirrel.cpp -------------------------------------------------------------------------------- /Shared/Scripting/CSquirrel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Scripting/CSquirrel.h -------------------------------------------------------------------------------- /Shared/Server/CServerInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Server/CServerInterface.h -------------------------------------------------------------------------------- /Shared/SharedUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/SharedUtility.cpp -------------------------------------------------------------------------------- /Shared/SharedUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/SharedUtility.h -------------------------------------------------------------------------------- /Shared/Threading/CMutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Threading/CMutex.cpp -------------------------------------------------------------------------------- /Shared/Threading/CMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Threading/CMutex.h -------------------------------------------------------------------------------- /Shared/Threading/CThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Threading/CThread.cpp -------------------------------------------------------------------------------- /Shared/Threading/CThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/Threading/CThread.h -------------------------------------------------------------------------------- /Shared/VFS/CVFSInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/VFS/CVFSInterface.h -------------------------------------------------------------------------------- /Shared/VFS/CVFSModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/VFS/CVFSModule.cpp -------------------------------------------------------------------------------- /Shared/VFS/CVFSModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Shared/VFS/CVFSModule.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/D3D10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/D3D10.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/D3D10_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/D3D10_1.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/D3DX10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/D3DX10.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/D3DX10tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/D3DX10tex.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/DXGI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/DXGI.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/DXGIType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/DXGIType.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/DxErr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/DxErr.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/PIXPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/PIXPlugin.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/X3DAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/X3DAudio.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/XAPO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/XAPO.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/XAPOBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/XAPOBase.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/XAPOFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/XAPOFX.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/XInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/XInput.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/audiodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/audiodefs.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/comdecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/comdecl.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/d3d10misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/d3d10misc.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/d3d9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/d3d9.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/d3d9caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/d3d9caps.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/d3d9types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/d3d9types.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/d3dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/d3dx9.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/d3dx9anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/d3dx9anim.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/d3dx9core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/d3dx9core.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/d3dx9math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/d3dx9math.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/d3dx9mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/d3dx9mesh.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/d3dx9tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/d3dx9tex.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/d3dx9xof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/d3dx9xof.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/ddraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/ddraw.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/dinput.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/dinputd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/dinputd.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/dsconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/dsconf.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/dsetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/dsetup.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/dsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/dsound.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/dvp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/dvp.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/dxdiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/dxdiag.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/dxerr9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/dxerr9.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/dxfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/dxfile.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/dxsdkver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/dxsdkver.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/gameux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/gameux.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/multimon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/multimon.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/rmxfguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/rmxfguid.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/rmxftmpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/rmxftmpl.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/xact3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/xact3.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/xact3d3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/xact3d3.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/xact3wb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/xact3wb.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/xaudio2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/xaudio2.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/xaudio2fx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/xaudio2fx.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Include/xma2defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Include/xma2defs.h -------------------------------------------------------------------------------- /Vendor/DXSDK/Lib/DxErr.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Lib/DxErr.lib -------------------------------------------------------------------------------- /Vendor/DXSDK/Lib/DxErr9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Lib/DxErr9.lib -------------------------------------------------------------------------------- /Vendor/DXSDK/Lib/X3DAudio.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Lib/X3DAudio.lib -------------------------------------------------------------------------------- /Vendor/DXSDK/Lib/XAPOFX.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Lib/XAPOFX.lib -------------------------------------------------------------------------------- /Vendor/DXSDK/Lib/XInput.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Lib/XInput.lib -------------------------------------------------------------------------------- /Vendor/DXSDK/Lib/d3d10.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Lib/d3d10.lib -------------------------------------------------------------------------------- /Vendor/DXSDK/Lib/d3d10_1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Lib/d3d10_1.lib -------------------------------------------------------------------------------- /Vendor/DXSDK/Lib/d3d10_1d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Lib/d3d10_1d.lib -------------------------------------------------------------------------------- /Vendor/DXSDK/Lib/d3d9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Lib/d3d9.lib -------------------------------------------------------------------------------- /Vendor/DXSDK/Lib/d3dx10.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Lib/d3dx10.lib -------------------------------------------------------------------------------- /Vendor/DXSDK/Lib/d3dx10d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Lib/d3dx10d.lib -------------------------------------------------------------------------------- /Vendor/DXSDK/Lib/d3dx9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Lib/d3dx9.lib -------------------------------------------------------------------------------- /Vendor/DXSDK/Lib/d3dx9d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Lib/d3dx9d.lib -------------------------------------------------------------------------------- /Vendor/DXSDK/Lib/d3dxof.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Lib/d3dxof.lib -------------------------------------------------------------------------------- /Vendor/DXSDK/Lib/ddraw.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Lib/ddraw.lib -------------------------------------------------------------------------------- /Vendor/DXSDK/Lib/dinput8.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Lib/dinput8.lib -------------------------------------------------------------------------------- /Vendor/DXSDK/Lib/dsetup.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Lib/dsetup.lib -------------------------------------------------------------------------------- /Vendor/DXSDK/Lib/dsound.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Lib/dsound.lib -------------------------------------------------------------------------------- /Vendor/DXSDK/Lib/dxgi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Lib/dxgi.lib -------------------------------------------------------------------------------- /Vendor/DXSDK/Lib/dxguid.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Lib/dxguid.lib -------------------------------------------------------------------------------- /Vendor/DXSDK/Lib/xapobase.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Lib/xapobase.lib -------------------------------------------------------------------------------- /Vendor/DXSDK/Lib/xapobased.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/Lib/xapobased.lib -------------------------------------------------------------------------------- /Vendor/DXSDK/SDK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/DXSDK/SDK.txt -------------------------------------------------------------------------------- /Vendor/EAWebkit/EAWebkit.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/EAWebkit/EAWebkit.zip -------------------------------------------------------------------------------- /Vendor/SILLY-0.1.0/SILLY.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/SILLY-0.1.0/SILLY.vcxproj -------------------------------------------------------------------------------- /Vendor/Squirrel/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/makefile -------------------------------------------------------------------------------- /Vendor/Squirrel/sqapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqapi.cpp -------------------------------------------------------------------------------- /Vendor/Squirrel/sqarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqarray.h -------------------------------------------------------------------------------- /Vendor/Squirrel/sqbaselib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqbaselib.cpp -------------------------------------------------------------------------------- /Vendor/Squirrel/sqclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqclass.cpp -------------------------------------------------------------------------------- /Vendor/Squirrel/sqclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqclass.h -------------------------------------------------------------------------------- /Vendor/Squirrel/sqclosure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqclosure.h -------------------------------------------------------------------------------- /Vendor/Squirrel/sqcompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqcompiler.cpp -------------------------------------------------------------------------------- /Vendor/Squirrel/sqcompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqcompiler.h -------------------------------------------------------------------------------- /Vendor/Squirrel/sqdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqdebug.cpp -------------------------------------------------------------------------------- /Vendor/Squirrel/sqfuncproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqfuncproto.h -------------------------------------------------------------------------------- /Vendor/Squirrel/sqfuncstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqfuncstate.cpp -------------------------------------------------------------------------------- /Vendor/Squirrel/sqfuncstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqfuncstate.h -------------------------------------------------------------------------------- /Vendor/Squirrel/sqlexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqlexer.cpp -------------------------------------------------------------------------------- /Vendor/Squirrel/sqlexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqlexer.h -------------------------------------------------------------------------------- /Vendor/Squirrel/sqmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqmem.cpp -------------------------------------------------------------------------------- /Vendor/Squirrel/sqobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqobject.cpp -------------------------------------------------------------------------------- /Vendor/Squirrel/sqobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqobject.h -------------------------------------------------------------------------------- /Vendor/Squirrel/sqopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqopcodes.h -------------------------------------------------------------------------------- /Vendor/Squirrel/sqpcheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqpcheader.h -------------------------------------------------------------------------------- /Vendor/Squirrel/sqstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqstate.cpp -------------------------------------------------------------------------------- /Vendor/Squirrel/sqstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqstate.h -------------------------------------------------------------------------------- /Vendor/Squirrel/sqstdaux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqstdaux.cpp -------------------------------------------------------------------------------- /Vendor/Squirrel/sqstdaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqstdaux.h -------------------------------------------------------------------------------- /Vendor/Squirrel/sqstdblob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqstdblob.cpp -------------------------------------------------------------------------------- /Vendor/Squirrel/sqstdblob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqstdblob.h -------------------------------------------------------------------------------- /Vendor/Squirrel/sqstdblobimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqstdblobimpl.h -------------------------------------------------------------------------------- /Vendor/Squirrel/sqstdio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqstdio.cpp -------------------------------------------------------------------------------- /Vendor/Squirrel/sqstdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqstdio.h -------------------------------------------------------------------------------- /Vendor/Squirrel/sqstdmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqstdmath.cpp -------------------------------------------------------------------------------- /Vendor/Squirrel/sqstdmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqstdmath.h -------------------------------------------------------------------------------- /Vendor/Squirrel/sqstdrex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqstdrex.cpp -------------------------------------------------------------------------------- /Vendor/Squirrel/sqstdstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqstdstream.cpp -------------------------------------------------------------------------------- /Vendor/Squirrel/sqstdstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqstdstream.h -------------------------------------------------------------------------------- /Vendor/Squirrel/sqstdstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqstdstring.cpp -------------------------------------------------------------------------------- /Vendor/Squirrel/sqstdstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqstdstring.h -------------------------------------------------------------------------------- /Vendor/Squirrel/sqstdsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqstdsystem.cpp -------------------------------------------------------------------------------- /Vendor/Squirrel/sqstdsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqstdsystem.h -------------------------------------------------------------------------------- /Vendor/Squirrel/sqstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqstring.h -------------------------------------------------------------------------------- /Vendor/Squirrel/sqtable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqtable.cpp -------------------------------------------------------------------------------- /Vendor/Squirrel/sqtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqtable.h -------------------------------------------------------------------------------- /Vendor/Squirrel/squirrel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/squirrel.h -------------------------------------------------------------------------------- /Vendor/Squirrel/squserdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/squserdata.h -------------------------------------------------------------------------------- /Vendor/Squirrel/squtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/squtils.h -------------------------------------------------------------------------------- /Vendor/Squirrel/sqvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqvm.cpp -------------------------------------------------------------------------------- /Vendor/Squirrel/sqvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/Squirrel/sqvm.h -------------------------------------------------------------------------------- /Vendor/bass/bass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/bass/bass.h -------------------------------------------------------------------------------- /Vendor/bass/bass.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/bass/bass.lib -------------------------------------------------------------------------------- /Vendor/expat-2.0.1/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/expat-2.0.1/ascii.h -------------------------------------------------------------------------------- /Vendor/expat-2.0.1/asciitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/expat-2.0.1/asciitab.h -------------------------------------------------------------------------------- /Vendor/expat-2.0.1/expat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/expat-2.0.1/expat.h -------------------------------------------------------------------------------- /Vendor/expat-2.0.1/iasciitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/expat-2.0.1/iasciitab.h -------------------------------------------------------------------------------- /Vendor/expat-2.0.1/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/expat-2.0.1/internal.h -------------------------------------------------------------------------------- /Vendor/expat-2.0.1/latin1tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/expat-2.0.1/latin1tab.h -------------------------------------------------------------------------------- /Vendor/expat-2.0.1/nametab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/expat-2.0.1/nametab.h -------------------------------------------------------------------------------- /Vendor/expat-2.0.1/utf8tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/expat-2.0.1/utf8tab.h -------------------------------------------------------------------------------- /Vendor/expat-2.0.1/winconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/expat-2.0.1/winconfig.h -------------------------------------------------------------------------------- /Vendor/expat-2.0.1/xmlparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/expat-2.0.1/xmlparse.c -------------------------------------------------------------------------------- /Vendor/expat-2.0.1/xmlrole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/expat-2.0.1/xmlrole.c -------------------------------------------------------------------------------- /Vendor/expat-2.0.1/xmlrole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/expat-2.0.1/xmlrole.h -------------------------------------------------------------------------------- /Vendor/expat-2.0.1/xmltok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/expat-2.0.1/xmltok.c -------------------------------------------------------------------------------- /Vendor/expat-2.0.1/xmltok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/expat-2.0.1/xmltok.h -------------------------------------------------------------------------------- /Vendor/expat-2.0.1/xmltok_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/expat-2.0.1/xmltok_impl.c -------------------------------------------------------------------------------- /Vendor/expat-2.0.1/xmltok_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/expat-2.0.1/xmltok_impl.h -------------------------------------------------------------------------------- /Vendor/expat-2.0.1/xmltok_ns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/expat-2.0.1/xmltok_ns.c -------------------------------------------------------------------------------- /Vendor/fat-io/fat-io.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/fat-io/fat-io.vcxproj -------------------------------------------------------------------------------- /Vendor/fat-io/fat_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/fat-io/fat_access.c -------------------------------------------------------------------------------- /Vendor/fat-io/fat_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/fat-io/fat_access.h -------------------------------------------------------------------------------- /Vendor/fat-io/fat_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/fat-io/fat_cache.c -------------------------------------------------------------------------------- /Vendor/fat-io/fat_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/fat-io/fat_cache.h -------------------------------------------------------------------------------- /Vendor/fat-io/fat_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/fat-io/fat_defs.h -------------------------------------------------------------------------------- /Vendor/fat-io/fat_filelib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/fat-io/fat_filelib.c -------------------------------------------------------------------------------- /Vendor/fat-io/fat_filelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/fat-io/fat_filelib.h -------------------------------------------------------------------------------- /Vendor/fat-io/fat_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/fat-io/fat_format.c -------------------------------------------------------------------------------- /Vendor/fat-io/fat_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/fat-io/fat_format.h -------------------------------------------------------------------------------- /Vendor/fat-io/fat_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/fat-io/fat_misc.c -------------------------------------------------------------------------------- /Vendor/fat-io/fat_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/fat-io/fat_misc.h -------------------------------------------------------------------------------- /Vendor/fat-io/fat_opts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/fat-io/fat_opts.h -------------------------------------------------------------------------------- /Vendor/fat-io/fat_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/fat-io/fat_string.c -------------------------------------------------------------------------------- /Vendor/fat-io/fat_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/fat-io/fat_string.h -------------------------------------------------------------------------------- /Vendor/fat-io/fat_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/fat-io/fat_table.c -------------------------------------------------------------------------------- /Vendor/fat-io/fat_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/fat-io/fat_table.h -------------------------------------------------------------------------------- /Vendor/fat-io/fat_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/fat-io/fat_types.h -------------------------------------------------------------------------------- /Vendor/fat-io/fat_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/fat-io/fat_write.c -------------------------------------------------------------------------------- /Vendor/fat-io/fat_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/fat-io/fat_write.h -------------------------------------------------------------------------------- /Vendor/fat-io/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/fat-io/makefile -------------------------------------------------------------------------------- /Vendor/include/FreeImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/include/FreeImage.h -------------------------------------------------------------------------------- /Vendor/include/corona.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/include/corona.h -------------------------------------------------------------------------------- /Vendor/include/freetype/ftbbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/include/freetype/ftbbox.h -------------------------------------------------------------------------------- /Vendor/include/freetype/ftbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/include/freetype/ftbdf.h -------------------------------------------------------------------------------- /Vendor/include/freetype/ftcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/include/freetype/ftcid.h -------------------------------------------------------------------------------- /Vendor/include/freetype/ftgasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/include/freetype/ftgasp.h -------------------------------------------------------------------------------- /Vendor/include/freetype/ftgzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/include/freetype/ftgzip.h -------------------------------------------------------------------------------- /Vendor/include/freetype/ftlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/include/freetype/ftlist.h -------------------------------------------------------------------------------- /Vendor/include/freetype/ftlzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/include/freetype/ftlzw.h -------------------------------------------------------------------------------- /Vendor/include/freetype/ftmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/include/freetype/ftmac.h -------------------------------------------------------------------------------- /Vendor/include/freetype/ftmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/include/freetype/ftmm.h -------------------------------------------------------------------------------- /Vendor/include/freetype/ftpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/include/freetype/ftpfr.h -------------------------------------------------------------------------------- /Vendor/include/freetype/ftxf86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/include/freetype/ftxf86.h -------------------------------------------------------------------------------- /Vendor/include/freetype/tttags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/include/freetype/tttags.h -------------------------------------------------------------------------------- /Vendor/include/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/include/ft2build.h -------------------------------------------------------------------------------- /Vendor/include/pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/include/pcre.h -------------------------------------------------------------------------------- /Vendor/include/tiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/include/tiff.h -------------------------------------------------------------------------------- /Vendor/include/tiffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/include/tiffconf.h -------------------------------------------------------------------------------- /Vendor/include/tiffio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/include/tiffio.h -------------------------------------------------------------------------------- /Vendor/include/tiffvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/include/tiffvers.h -------------------------------------------------------------------------------- /Vendor/jpeg-6b/ansi2knr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/ansi2knr.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/cderror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/cderror.h -------------------------------------------------------------------------------- /Vendor/jpeg-6b/cdjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/cdjpeg.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/cdjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/cdjpeg.h -------------------------------------------------------------------------------- /Vendor/jpeg-6b/cjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/cjpeg.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/ckconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/ckconfig.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/djpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/djpeg.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/example.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jcapimin.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jcapistd.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jccoefct.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jccolor.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jcdctmgr.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jchuff.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jchuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jchuff.h -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jcinit.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jcmainct.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jcmarker.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jcmaster.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jcomapi.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jconfig.h -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jcparam.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jcphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jcphuff.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jcprepct.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jcsample.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jctrans.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jdapimin.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jdapistd.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jdatadst.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jdatasrc.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jdcoefct.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jdcolor.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jdct.h -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jddctmgr.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jdhuff.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jdhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jdhuff.h -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jdinput.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jdmainct.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jdmarker.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jdmaster.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jdmerge.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jdphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jdphuff.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jdpostct.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jdsample.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jdtrans.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jerror.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jerror.h -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jfdctflt.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jfdctfst.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jfdctint.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jidctflt.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jidctfst.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jidctint.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jidctred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jidctred.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jinclude.h -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jmemansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jmemansi.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jmemdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jmemdos.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jmemmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jmemmac.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jmemmgr.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jmemname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jmemname.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jmemnobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jmemnobs.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jmemsys.h -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jmorecfg.h -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jpegint.h -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jpeglib.h -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jpegtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jpegtran.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jquant1.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jquant2.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jutils.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/jversion.h -------------------------------------------------------------------------------- /Vendor/jpeg-6b/rdbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/rdbmp.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/rdcolmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/rdcolmap.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/rdgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/rdgif.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/rdjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/rdjpgcom.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/rdppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/rdppm.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/rdrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/rdrle.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/rdswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/rdswitch.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/rdtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/rdtarga.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/transupp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/transupp.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/transupp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/transupp.h -------------------------------------------------------------------------------- /Vendor/jpeg-6b/wrbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/wrbmp.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/wrgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/wrgif.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/wrjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/wrjpgcom.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/wrppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/wrppm.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/wrrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/wrrle.c -------------------------------------------------------------------------------- /Vendor/jpeg-6b/wrtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/jpeg-6b/wrtarga.c -------------------------------------------------------------------------------- /Vendor/lib/static/freetype.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/lib/static/freetype.lib -------------------------------------------------------------------------------- /Vendor/lib/static/freetype_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/lib/static/freetype_d.lib -------------------------------------------------------------------------------- /Vendor/lib/static/pcre.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/lib/static/pcre.lib -------------------------------------------------------------------------------- /Vendor/lib/static/pcre_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/lib/static/pcre_d.lib -------------------------------------------------------------------------------- /Vendor/lpng142/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/lpng142/png.c -------------------------------------------------------------------------------- /Vendor/lpng142/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/lpng142/png.h -------------------------------------------------------------------------------- /Vendor/lpng142/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/lpng142/pngconf.h -------------------------------------------------------------------------------- /Vendor/lpng142/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/lpng142/pngerror.c -------------------------------------------------------------------------------- /Vendor/lpng142/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/lpng142/pngget.c -------------------------------------------------------------------------------- /Vendor/lpng142/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/lpng142/pngmem.c -------------------------------------------------------------------------------- /Vendor/lpng142/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/lpng142/pngpread.c -------------------------------------------------------------------------------- /Vendor/lpng142/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/lpng142/pngpriv.h -------------------------------------------------------------------------------- /Vendor/lpng142/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/lpng142/pngread.c -------------------------------------------------------------------------------- /Vendor/lpng142/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/lpng142/pngrio.c -------------------------------------------------------------------------------- /Vendor/lpng142/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/lpng142/pngrtran.c -------------------------------------------------------------------------------- /Vendor/lpng142/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/lpng142/pngrutil.c -------------------------------------------------------------------------------- /Vendor/lpng142/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/lpng142/pngset.c -------------------------------------------------------------------------------- /Vendor/lpng142/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/lpng142/pngtest.c -------------------------------------------------------------------------------- /Vendor/lpng142/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/lpng142/pngtrans.c -------------------------------------------------------------------------------- /Vendor/lpng142/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/lpng142/pngwio.c -------------------------------------------------------------------------------- /Vendor/lpng142/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/lpng142/pngwrite.c -------------------------------------------------------------------------------- /Vendor/lpng142/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/lpng142/pngwtran.c -------------------------------------------------------------------------------- /Vendor/lpng142/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/lpng142/pngwutil.c -------------------------------------------------------------------------------- /Vendor/md5/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/md5/md5.cpp -------------------------------------------------------------------------------- /Vendor/md5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/md5/md5.h -------------------------------------------------------------------------------- /Vendor/mongoose/mongoose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/mongoose/mongoose.c -------------------------------------------------------------------------------- /Vendor/mongoose/mongoose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/mongoose/mongoose.h -------------------------------------------------------------------------------- /Vendor/sqlite/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/sqlite/makefile -------------------------------------------------------------------------------- /Vendor/sqlite/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/sqlite/shell.c -------------------------------------------------------------------------------- /Vendor/sqlite/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/sqlite/sqlite3.c -------------------------------------------------------------------------------- /Vendor/sqlite/sqlite3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/sqlite/sqlite3.def -------------------------------------------------------------------------------- /Vendor/sqlite/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/sqlite/sqlite3.h -------------------------------------------------------------------------------- /Vendor/sqlite/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/sqlite/sqlite3ext.h -------------------------------------------------------------------------------- /Vendor/tinyxml/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/tinyxml/makefile -------------------------------------------------------------------------------- /Vendor/tinyxml/ticpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/tinyxml/ticpp.cpp -------------------------------------------------------------------------------- /Vendor/tinyxml/ticpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/tinyxml/ticpp.h -------------------------------------------------------------------------------- /Vendor/tinyxml/ticpprc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/tinyxml/ticpprc.h -------------------------------------------------------------------------------- /Vendor/tinyxml/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/tinyxml/tinystr.cpp -------------------------------------------------------------------------------- /Vendor/tinyxml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/tinyxml/tinystr.h -------------------------------------------------------------------------------- /Vendor/tinyxml/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/tinyxml/tinyxml.cpp -------------------------------------------------------------------------------- /Vendor/tinyxml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/tinyxml/tinyxml.h -------------------------------------------------------------------------------- /Vendor/tinyxml/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/tinyxml/tinyxmlerror.cpp -------------------------------------------------------------------------------- /Vendor/tinyxml/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/tinyxml/tinyxmlparser.cpp -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/adler32.c -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/compress.c -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/crc32.c -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/crc32.h -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/deflate.c -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/deflate.h -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/example.c -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/gzclose.c -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/gzguts.h -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/gzlib.c -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/gzread.c -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/gzwrite.c -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/infback.c -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/inffast.c -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/inffast.h -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/inffixed.h -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/inflate.c -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/inflate.h -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/inftrees.c -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/inftrees.h -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/minigzip.c -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/trees.c -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/trees.h -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/uncompr.c -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/zconf.h -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/zlib.h -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/zutil.c -------------------------------------------------------------------------------- /Vendor/zlib-1.2.5/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/Vendor/zlib-1.2.5/zutil.h -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neproify/ivmultiplayer/HEAD/makefile --------------------------------------------------------------------------------