├── .gitignore ├── GameLibraries ├── D3DX9_43.dll ├── HavokWrapper.dll ├── Sandbox.Audio.dll ├── Sandbox.Common.XmlSerializers.dll ├── Sandbox.Common.dll ├── Sandbox.Game.dll ├── Sandbox.Graphics.dll ├── Sandbox.Input.dll ├── SharpDX.Direct3D9.dll ├── SharpDX.DirectInput.dll ├── SharpDX.RawInput.dll ├── SharpDX.XAudio2.dll ├── SharpDX.dll ├── SpaceEngineersDedicated.exe ├── SpaceEngineersDedicated.exe.config ├── SteamSDK.dll ├── VRage.Common.dll ├── VRage.Library.dll ├── VRage.Math.dll ├── VRage.Render.dll ├── msvcp110.dll ├── msvcp110_clr0400.dll ├── msvcr110.dll ├── msvcr110_clr0400.dll ├── steam_api64.dll ├── steam_appid.txt ├── steamclient64.dll ├── tier0_s64.dll └── vstdlib_s64.dll ├── LICENSE ├── README.md ├── SEConfigTool ├── App.config ├── ClassDiagram.cd ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── DataSources │ │ └── SEModAPI.API.Definitions.CubeBlocks.CubeBlockDefinitionsManager.datasource │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SEConfigTool.Designer.cs ├── SEConfigTool.cs ├── SEConfigTool.csproj └── SEConfigTool.resx ├── SELiveMap ├── css │ └── main.css ├── images │ └── textures │ │ └── missing_image.png ├── index.html └── js │ ├── TrackballControls.js │ └── main.js ├── SEModAPI.sln ├── SEModAPI ├── API │ ├── Definitions │ │ ├── AmmoMagazinesDefinition.cs │ │ ├── BlueprintsDefinition.cs │ │ ├── ComponentsDefinition.cs │ │ ├── ConfigFileSerializer.cs │ │ ├── ConfigurationDefinition.cs │ │ ├── ContainerTypesDefinition.cs │ │ ├── CubeBlocks │ │ │ ├── AssemblerDefinition.cs │ │ │ ├── BlockDefinition.cs │ │ │ ├── BlocksManager.cs │ │ │ ├── CargoContainerDefinition.cs │ │ │ ├── CockpitDefinition.cs │ │ │ ├── CubeBlockDefinition.cs │ │ │ ├── GravityGeneratorDefinition.cs │ │ │ ├── GyroscopeDefinition.cs │ │ │ ├── LightingBlockDefinition.cs │ │ │ ├── MergeBlockDefinition.cs │ │ │ ├── MotorStatorDefinition.cs │ │ │ ├── OreDetectorDefinition.cs │ │ │ ├── ReactorDefinition.cs │ │ │ ├── RefineryDefinition.cs │ │ │ ├── ShipDrillDefinition.cs │ │ │ ├── SolarPanelDefinition.cs │ │ │ ├── ThrustersDefinition.cs │ │ │ └── VirtualMassDefinition.cs │ │ ├── DedicatedConfigDefinition.cs │ │ ├── DefinitionOverLayer.cs │ │ ├── EnvironmentDefinition.cs │ │ ├── GlobalEventsDefinition.cs │ │ ├── HandItemsDefinition.cs │ │ ├── OverLayerDefinition.cs │ │ ├── PhysicalItemsDefinition.cs │ │ ├── ScenariosDefinition.cs │ │ ├── SpawnGroupsDefinition.cs │ │ ├── TransparentMaterialsDefinition.cs │ │ └── VoxelMaterialsDefinition.cs │ ├── GameInstallation.cs │ ├── SEModAPIExceptions.cs │ └── TypeConverters.cs ├── Interop │ ├── ClassType.cs │ └── CubeType.cs ├── Properties │ └── AssemblyInfo.cs ├── SEModAPI.csproj └── Support │ ├── AutoException.cs │ ├── NumericTextBox.cs │ └── NumericTextBox.resx ├── SEModAPIExtensions ├── API │ ├── BasicUnitTestManager.cs │ ├── CargoShipManager.cs │ ├── ChatManager.cs │ ├── IPC │ │ ├── CorsInspector.cs │ │ ├── IService.cs │ │ ├── Service.cs │ │ └── UserNameValidator.cs │ ├── MultiblockStructure.cs │ ├── Plugin │ │ ├── Events │ │ │ ├── IBaseEntityHandler.cs │ │ │ ├── ICharacterEventHandler.cs │ │ │ ├── IChatEventHandler.cs │ │ │ ├── ICubeBlockEventHandler.cs │ │ │ ├── ICubeGridHandler.cs │ │ │ ├── IPlayerEventHandler.cs │ │ │ └── ISectorEventHandler.cs │ │ ├── IPlugin.cs │ │ └── PluginBase.cs │ ├── PluginManager.cs │ └── Server.cs ├── Properties │ └── AssemblyInfo.cs └── SEModAPIExtensions.csproj ├── SEModAPIInternal ├── API │ ├── Client │ │ └── ClientNetworkManager.cs │ ├── Common │ │ ├── BlockRegistry.cs │ │ ├── EntityEvents.cs │ │ ├── EntityRegistry.cs │ │ ├── FactionsManager.cs │ │ ├── GameEntityManager.cs │ │ ├── GameObjectRegistry.cs │ │ ├── NetworkManager.cs │ │ ├── PlayerManager.cs │ │ ├── PowerManager.cs │ │ ├── RadioManager.cs │ │ ├── SandboxGameAssemblyWrapper.cs │ │ └── WorldManager.cs │ ├── Entity │ │ ├── BaseEntity.cs │ │ ├── BaseObject.cs │ │ ├── InventoryEntity.cs │ │ ├── PowerProducer.cs │ │ ├── PowerReceiver.cs │ │ ├── Sector │ │ │ ├── Event.cs │ │ │ └── SectorObject │ │ │ │ ├── CharacterEntity.cs │ │ │ │ ├── CubeGrid.cs │ │ │ │ ├── CubeGrid │ │ │ │ ├── BlockGroups.cs │ │ │ │ ├── ConveyorLines.cs │ │ │ │ ├── CubeBlock │ │ │ │ │ ├── AntennaEntity.cs │ │ │ │ │ ├── AssemblerEntity.cs │ │ │ │ │ ├── BatteryBlockEntity.cs │ │ │ │ │ ├── BeaconEntity.cs │ │ │ │ │ ├── ButtonPanelEntity.cs │ │ │ │ │ ├── CameraBlockEntity.cs │ │ │ │ │ ├── CargoContainerEntity.cs │ │ │ │ │ ├── CockpitEntity.cs │ │ │ │ │ ├── ConveyorBlockEntity.cs │ │ │ │ │ ├── ConveyorTubeEntity.cs │ │ │ │ │ ├── DoorEntity.cs │ │ │ │ │ ├── FunctionalBlockEntity.cs │ │ │ │ │ ├── GattlingTurretEntity.cs │ │ │ │ │ ├── GravityBaseEntity.cs │ │ │ │ │ ├── GravityGeneratorEntity.cs │ │ │ │ │ ├── GravitySphereEntity.cs │ │ │ │ │ ├── GyroEntity.cs │ │ │ │ │ ├── InteriorLightEntity.cs │ │ │ │ │ ├── LandingGearEntity.cs │ │ │ │ │ ├── LightEntity.cs │ │ │ │ │ ├── MedicalRoomEntity.cs │ │ │ │ │ ├── MergeBlockEntity.cs │ │ │ │ │ ├── MissileTurretEntity.cs │ │ │ │ │ ├── OreDetectorEntity.cs │ │ │ │ │ ├── PistonEntity.cs │ │ │ │ │ ├── ProductionBlockEntity.cs │ │ │ │ │ ├── ReactorEntity.cs │ │ │ │ │ ├── RefineryEntity.cs │ │ │ │ │ ├── ReflectorLightEntity.cs │ │ │ │ │ ├── RotorEntity.cs │ │ │ │ │ ├── ShipControllerEntity.cs │ │ │ │ │ ├── ShipDrillEntity.cs │ │ │ │ │ ├── ShipGrinderEntity.cs │ │ │ │ │ ├── ShipToolBaseEntity.cs │ │ │ │ │ ├── ShipWelderEntity.cs │ │ │ │ │ ├── SmallGatlingGunEntity.cs │ │ │ │ │ ├── SolarPanelEntity.cs │ │ │ │ │ ├── TerminalBlockEntity.cs │ │ │ │ │ ├── ThrustEntity.cs │ │ │ │ │ ├── TurretBaseEntity.cs │ │ │ │ │ └── VirtualMassEntity.cs │ │ │ │ └── CubeBlockEntity.cs │ │ │ │ ├── FloatingObject.cs │ │ │ │ ├── Meteor.cs │ │ │ │ └── VoxelMap.cs │ │ └── SectorEntity.cs │ ├── Server │ │ ├── ServerAssemblyWrapper.cs │ │ └── ServerNetworkManager.cs │ └── Utility │ │ └── Utility.cs ├── Properties │ └── AssemblyInfo.cs ├── SEModAPIInternal.csproj └── Support │ ├── EntityException.cs │ └── LogManager.cs ├── SEServerExtender ├── App.config ├── CubeBlockDialog.Designer.cs ├── CubeBlockDialog.cs ├── CubeBlockDialog.resx ├── InventoryItemDialog.Designer.cs ├── InventoryItemDialog.cs ├── InventoryItemDialog.resx ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SEServerExtender.Designer.cs ├── SEServerExtender.cs ├── SEServerExtender.csproj ├── SEServerExtender.resx └── Service.cs └── SEServerGUI ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── SEServerGUI.Designer.cs ├── SEServerGUI.cs ├── SEServerGUI.csproj ├── SEServerGUI.resx ├── Service References ├── ChatServiceReference │ ├── ChatService.wsdl │ ├── Reference.cs │ ├── Reference.svcmap │ ├── configuration.svcinfo │ ├── configuration91.svcinfo │ ├── item.disco │ ├── item.xsd │ ├── item1.xsd │ └── item2.xsd ├── PluginServiceReference │ ├── PluginService.wsdl │ ├── Reference.cs │ ├── Reference.svcmap │ ├── configuration.svcinfo │ ├── configuration91.svcinfo │ ├── item.disco │ ├── item.xsd │ ├── item1.xsd │ └── item2.xsd ├── ServerServiceReference │ ├── Reference.cs │ ├── Reference.svcmap │ ├── SEServerGUI.ServerServiceReference.ServerProxy.datasource │ ├── Server.wsdl │ ├── configuration.svcinfo │ ├── configuration91.svcinfo │ ├── item.disco │ ├── item.xsd │ ├── item11.xsd │ └── item13.xsd └── ServiceReference │ ├── InternalService.wsdl │ ├── Reference.cs │ ├── Reference.svcmap │ ├── SEServerGUI.ServiceReference.BaseEntityProxy.datasource │ ├── SEServerGUI.ServiceReference.CubeBlockEntityProxy.datasource │ ├── SEServerGUI.ServiceReference.CubeGridEntityProxy.datasource │ ├── SEServerGUI.ServiceReference.InventoryItemEntityProxy.datasource │ ├── configuration.svcinfo │ ├── configuration91.svcinfo │ ├── item.disco │ ├── item.xsd │ ├── item1.xsd │ ├── item10.xsd │ ├── item2.xsd │ ├── item3.xsd │ ├── item4.xsd │ ├── item5.xsd │ ├── item6.xsd │ ├── item7.xsd │ ├── item8.xsd │ ├── item81.xsd │ ├── item810.xsd │ ├── item812.xsd │ ├── item82.xsd │ ├── item83.xsd │ ├── item84.xsd │ ├── item85.xsd │ ├── item86.xsd │ ├── item87.xsd │ ├── item89.xsd │ └── item9.xsd └── app.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/.gitignore -------------------------------------------------------------------------------- /GameLibraries/D3DX9_43.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/D3DX9_43.dll -------------------------------------------------------------------------------- /GameLibraries/HavokWrapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/HavokWrapper.dll -------------------------------------------------------------------------------- /GameLibraries/Sandbox.Audio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/Sandbox.Audio.dll -------------------------------------------------------------------------------- /GameLibraries/Sandbox.Common.XmlSerializers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/Sandbox.Common.XmlSerializers.dll -------------------------------------------------------------------------------- /GameLibraries/Sandbox.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/Sandbox.Common.dll -------------------------------------------------------------------------------- /GameLibraries/Sandbox.Game.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/Sandbox.Game.dll -------------------------------------------------------------------------------- /GameLibraries/Sandbox.Graphics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/Sandbox.Graphics.dll -------------------------------------------------------------------------------- /GameLibraries/Sandbox.Input.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/Sandbox.Input.dll -------------------------------------------------------------------------------- /GameLibraries/SharpDX.Direct3D9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/SharpDX.Direct3D9.dll -------------------------------------------------------------------------------- /GameLibraries/SharpDX.DirectInput.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/SharpDX.DirectInput.dll -------------------------------------------------------------------------------- /GameLibraries/SharpDX.RawInput.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/SharpDX.RawInput.dll -------------------------------------------------------------------------------- /GameLibraries/SharpDX.XAudio2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/SharpDX.XAudio2.dll -------------------------------------------------------------------------------- /GameLibraries/SharpDX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/SharpDX.dll -------------------------------------------------------------------------------- /GameLibraries/SpaceEngineersDedicated.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/SpaceEngineersDedicated.exe -------------------------------------------------------------------------------- /GameLibraries/SpaceEngineersDedicated.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/SpaceEngineersDedicated.exe.config -------------------------------------------------------------------------------- /GameLibraries/SteamSDK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/SteamSDK.dll -------------------------------------------------------------------------------- /GameLibraries/VRage.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/VRage.Common.dll -------------------------------------------------------------------------------- /GameLibraries/VRage.Library.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/VRage.Library.dll -------------------------------------------------------------------------------- /GameLibraries/VRage.Math.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/VRage.Math.dll -------------------------------------------------------------------------------- /GameLibraries/VRage.Render.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/VRage.Render.dll -------------------------------------------------------------------------------- /GameLibraries/msvcp110.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/msvcp110.dll -------------------------------------------------------------------------------- /GameLibraries/msvcp110_clr0400.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/msvcp110_clr0400.dll -------------------------------------------------------------------------------- /GameLibraries/msvcr110.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/msvcr110.dll -------------------------------------------------------------------------------- /GameLibraries/msvcr110_clr0400.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/msvcr110_clr0400.dll -------------------------------------------------------------------------------- /GameLibraries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/steam_api64.dll -------------------------------------------------------------------------------- /GameLibraries/steam_appid.txt: -------------------------------------------------------------------------------- 1 | 244850 -------------------------------------------------------------------------------- /GameLibraries/steamclient64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/steamclient64.dll -------------------------------------------------------------------------------- /GameLibraries/tier0_s64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/tier0_s64.dll -------------------------------------------------------------------------------- /GameLibraries/vstdlib_s64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/GameLibraries/vstdlib_s64.dll -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/README.md -------------------------------------------------------------------------------- /SEConfigTool/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEConfigTool/App.config -------------------------------------------------------------------------------- /SEConfigTool/ClassDiagram.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEConfigTool/ClassDiagram.cd -------------------------------------------------------------------------------- /SEConfigTool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEConfigTool/Program.cs -------------------------------------------------------------------------------- /SEConfigTool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEConfigTool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SEConfigTool/Properties/DataSources/SEModAPI.API.Definitions.CubeBlocks.CubeBlockDefinitionsManager.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEConfigTool/Properties/DataSources/SEModAPI.API.Definitions.CubeBlocks.CubeBlockDefinitionsManager.datasource -------------------------------------------------------------------------------- /SEConfigTool/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEConfigTool/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SEConfigTool/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEConfigTool/Properties/Resources.resx -------------------------------------------------------------------------------- /SEConfigTool/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEConfigTool/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SEConfigTool/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEConfigTool/Properties/Settings.settings -------------------------------------------------------------------------------- /SEConfigTool/SEConfigTool.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEConfigTool/SEConfigTool.Designer.cs -------------------------------------------------------------------------------- /SEConfigTool/SEConfigTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEConfigTool/SEConfigTool.cs -------------------------------------------------------------------------------- /SEConfigTool/SEConfigTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEConfigTool/SEConfigTool.csproj -------------------------------------------------------------------------------- /SEConfigTool/SEConfigTool.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEConfigTool/SEConfigTool.resx -------------------------------------------------------------------------------- /SELiveMap/css/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SELiveMap/images/textures/missing_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SELiveMap/images/textures/missing_image.png -------------------------------------------------------------------------------- /SELiveMap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SELiveMap/index.html -------------------------------------------------------------------------------- /SELiveMap/js/TrackballControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SELiveMap/js/TrackballControls.js -------------------------------------------------------------------------------- /SELiveMap/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SELiveMap/js/main.js -------------------------------------------------------------------------------- /SEModAPI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI.sln -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/AmmoMagazinesDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/AmmoMagazinesDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/BlueprintsDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/BlueprintsDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/ComponentsDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/ComponentsDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/ConfigFileSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/ConfigFileSerializer.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/ConfigurationDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/ConfigurationDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/ContainerTypesDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/ContainerTypesDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/CubeBlocks/AssemblerDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/CubeBlocks/AssemblerDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/CubeBlocks/BlockDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/CubeBlocks/BlockDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/CubeBlocks/BlocksManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/CubeBlocks/BlocksManager.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/CubeBlocks/CargoContainerDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/CubeBlocks/CargoContainerDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/CubeBlocks/CockpitDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/CubeBlocks/CockpitDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/CubeBlocks/CubeBlockDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/CubeBlocks/CubeBlockDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/CubeBlocks/GravityGeneratorDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/CubeBlocks/GravityGeneratorDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/CubeBlocks/GyroscopeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/CubeBlocks/GyroscopeDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/CubeBlocks/LightingBlockDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/CubeBlocks/LightingBlockDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/CubeBlocks/MergeBlockDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/CubeBlocks/MergeBlockDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/CubeBlocks/MotorStatorDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/CubeBlocks/MotorStatorDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/CubeBlocks/OreDetectorDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/CubeBlocks/OreDetectorDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/CubeBlocks/ReactorDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/CubeBlocks/ReactorDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/CubeBlocks/RefineryDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/CubeBlocks/RefineryDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/CubeBlocks/ShipDrillDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/CubeBlocks/ShipDrillDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/CubeBlocks/SolarPanelDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/CubeBlocks/SolarPanelDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/CubeBlocks/ThrustersDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/CubeBlocks/ThrustersDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/CubeBlocks/VirtualMassDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/CubeBlocks/VirtualMassDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/DedicatedConfigDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/DedicatedConfigDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/DefinitionOverLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/DefinitionOverLayer.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/EnvironmentDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/EnvironmentDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/GlobalEventsDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/GlobalEventsDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/HandItemsDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/HandItemsDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/OverLayerDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/OverLayerDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/PhysicalItemsDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/PhysicalItemsDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/ScenariosDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/ScenariosDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/SpawnGroupsDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/SpawnGroupsDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/TransparentMaterialsDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/TransparentMaterialsDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/Definitions/VoxelMaterialsDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/Definitions/VoxelMaterialsDefinition.cs -------------------------------------------------------------------------------- /SEModAPI/API/GameInstallation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/GameInstallation.cs -------------------------------------------------------------------------------- /SEModAPI/API/SEModAPIExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/SEModAPIExceptions.cs -------------------------------------------------------------------------------- /SEModAPI/API/TypeConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/API/TypeConverters.cs -------------------------------------------------------------------------------- /SEModAPI/Interop/ClassType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/Interop/ClassType.cs -------------------------------------------------------------------------------- /SEModAPI/Interop/CubeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/Interop/CubeType.cs -------------------------------------------------------------------------------- /SEModAPI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SEModAPI/SEModAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/SEModAPI.csproj -------------------------------------------------------------------------------- /SEModAPI/Support/AutoException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/Support/AutoException.cs -------------------------------------------------------------------------------- /SEModAPI/Support/NumericTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/Support/NumericTextBox.cs -------------------------------------------------------------------------------- /SEModAPI/Support/NumericTextBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPI/Support/NumericTextBox.resx -------------------------------------------------------------------------------- /SEModAPIExtensions/API/BasicUnitTestManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIExtensions/API/BasicUnitTestManager.cs -------------------------------------------------------------------------------- /SEModAPIExtensions/API/CargoShipManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIExtensions/API/CargoShipManager.cs -------------------------------------------------------------------------------- /SEModAPIExtensions/API/ChatManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIExtensions/API/ChatManager.cs -------------------------------------------------------------------------------- /SEModAPIExtensions/API/IPC/CorsInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIExtensions/API/IPC/CorsInspector.cs -------------------------------------------------------------------------------- /SEModAPIExtensions/API/IPC/IService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIExtensions/API/IPC/IService.cs -------------------------------------------------------------------------------- /SEModAPIExtensions/API/IPC/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIExtensions/API/IPC/Service.cs -------------------------------------------------------------------------------- /SEModAPIExtensions/API/IPC/UserNameValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIExtensions/API/IPC/UserNameValidator.cs -------------------------------------------------------------------------------- /SEModAPIExtensions/API/MultiblockStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIExtensions/API/MultiblockStructure.cs -------------------------------------------------------------------------------- /SEModAPIExtensions/API/Plugin/Events/IBaseEntityHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIExtensions/API/Plugin/Events/IBaseEntityHandler.cs -------------------------------------------------------------------------------- /SEModAPIExtensions/API/Plugin/Events/ICharacterEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIExtensions/API/Plugin/Events/ICharacterEventHandler.cs -------------------------------------------------------------------------------- /SEModAPIExtensions/API/Plugin/Events/IChatEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIExtensions/API/Plugin/Events/IChatEventHandler.cs -------------------------------------------------------------------------------- /SEModAPIExtensions/API/Plugin/Events/ICubeBlockEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIExtensions/API/Plugin/Events/ICubeBlockEventHandler.cs -------------------------------------------------------------------------------- /SEModAPIExtensions/API/Plugin/Events/ICubeGridHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIExtensions/API/Plugin/Events/ICubeGridHandler.cs -------------------------------------------------------------------------------- /SEModAPIExtensions/API/Plugin/Events/IPlayerEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIExtensions/API/Plugin/Events/IPlayerEventHandler.cs -------------------------------------------------------------------------------- /SEModAPIExtensions/API/Plugin/Events/ISectorEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIExtensions/API/Plugin/Events/ISectorEventHandler.cs -------------------------------------------------------------------------------- /SEModAPIExtensions/API/Plugin/IPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIExtensions/API/Plugin/IPlugin.cs -------------------------------------------------------------------------------- /SEModAPIExtensions/API/Plugin/PluginBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIExtensions/API/Plugin/PluginBase.cs -------------------------------------------------------------------------------- /SEModAPIExtensions/API/PluginManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIExtensions/API/PluginManager.cs -------------------------------------------------------------------------------- /SEModAPIExtensions/API/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIExtensions/API/Server.cs -------------------------------------------------------------------------------- /SEModAPIExtensions/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIExtensions/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SEModAPIExtensions/SEModAPIExtensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIExtensions/SEModAPIExtensions.csproj -------------------------------------------------------------------------------- /SEModAPIInternal/API/Client/ClientNetworkManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Client/ClientNetworkManager.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Common/BlockRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Common/BlockRegistry.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Common/EntityEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Common/EntityEvents.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Common/EntityRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Common/EntityRegistry.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Common/FactionsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Common/FactionsManager.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Common/GameEntityManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Common/GameEntityManager.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Common/GameObjectRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Common/GameObjectRegistry.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Common/NetworkManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Common/NetworkManager.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Common/PlayerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Common/PlayerManager.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Common/PowerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Common/PowerManager.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Common/RadioManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Common/RadioManager.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Common/SandboxGameAssemblyWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Common/SandboxGameAssemblyWrapper.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Common/WorldManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Common/WorldManager.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/BaseEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/BaseObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/BaseObject.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/InventoryEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/InventoryEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/PowerProducer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/PowerProducer.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/PowerReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/PowerReceiver.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/Event.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CharacterEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CharacterEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/BlockGroups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/BlockGroups.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/ConveyorLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/ConveyorLines.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/AntennaEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/AntennaEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/AssemblerEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/AssemblerEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/BatteryBlockEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/BatteryBlockEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/BeaconEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/BeaconEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/ButtonPanelEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/ButtonPanelEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/CameraBlockEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/CameraBlockEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/CargoContainerEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/CargoContainerEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/CockpitEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/CockpitEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/ConveyorBlockEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/ConveyorBlockEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/ConveyorTubeEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/ConveyorTubeEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/DoorEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/DoorEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/FunctionalBlockEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/FunctionalBlockEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/GattlingTurretEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/GattlingTurretEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/GravityBaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/GravityBaseEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/GravityGeneratorEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/GravityGeneratorEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/GravitySphereEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/GravitySphereEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/GyroEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/GyroEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/InteriorLightEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/InteriorLightEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/LandingGearEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/LandingGearEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/LightEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/LightEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/MedicalRoomEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/MedicalRoomEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/MergeBlockEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/MergeBlockEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/MissileTurretEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/MissileTurretEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/OreDetectorEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/OreDetectorEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/PistonEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/PistonEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/ProductionBlockEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/ProductionBlockEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/ReactorEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/ReactorEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/RefineryEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/RefineryEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/ReflectorLightEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/ReflectorLightEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/RotorEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/RotorEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/ShipControllerEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/ShipControllerEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/ShipDrillEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/ShipDrillEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/ShipGrinderEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/ShipGrinderEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/ShipToolBaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/ShipToolBaseEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/ShipWelderEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/ShipWelderEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/SmallGatlingGunEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/SmallGatlingGunEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/SolarPanelEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/SolarPanelEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/TerminalBlockEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/TerminalBlockEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/ThrustEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/ThrustEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/TurretBaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/TurretBaseEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/VirtualMassEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlock/VirtualMassEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlockEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/CubeGrid/CubeBlockEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/FloatingObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/FloatingObject.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/Meteor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/Meteor.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/Sector/SectorObject/VoxelMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/Sector/SectorObject/VoxelMap.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Entity/SectorEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Entity/SectorEntity.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Server/ServerAssemblyWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Server/ServerAssemblyWrapper.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Server/ServerNetworkManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Server/ServerNetworkManager.cs -------------------------------------------------------------------------------- /SEModAPIInternal/API/Utility/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/API/Utility/Utility.cs -------------------------------------------------------------------------------- /SEModAPIInternal/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SEModAPIInternal/SEModAPIInternal.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/SEModAPIInternal.csproj -------------------------------------------------------------------------------- /SEModAPIInternal/Support/EntityException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/Support/EntityException.cs -------------------------------------------------------------------------------- /SEModAPIInternal/Support/LogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEModAPIInternal/Support/LogManager.cs -------------------------------------------------------------------------------- /SEServerExtender/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerExtender/App.config -------------------------------------------------------------------------------- /SEServerExtender/CubeBlockDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerExtender/CubeBlockDialog.Designer.cs -------------------------------------------------------------------------------- /SEServerExtender/CubeBlockDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerExtender/CubeBlockDialog.cs -------------------------------------------------------------------------------- /SEServerExtender/CubeBlockDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerExtender/CubeBlockDialog.resx -------------------------------------------------------------------------------- /SEServerExtender/InventoryItemDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerExtender/InventoryItemDialog.Designer.cs -------------------------------------------------------------------------------- /SEServerExtender/InventoryItemDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerExtender/InventoryItemDialog.cs -------------------------------------------------------------------------------- /SEServerExtender/InventoryItemDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerExtender/InventoryItemDialog.resx -------------------------------------------------------------------------------- /SEServerExtender/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerExtender/Program.cs -------------------------------------------------------------------------------- /SEServerExtender/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerExtender/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SEServerExtender/SEServerExtender.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerExtender/SEServerExtender.Designer.cs -------------------------------------------------------------------------------- /SEServerExtender/SEServerExtender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerExtender/SEServerExtender.cs -------------------------------------------------------------------------------- /SEServerExtender/SEServerExtender.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerExtender/SEServerExtender.csproj -------------------------------------------------------------------------------- /SEServerExtender/SEServerExtender.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerExtender/SEServerExtender.resx -------------------------------------------------------------------------------- /SEServerExtender/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerExtender/Service.cs -------------------------------------------------------------------------------- /SEServerGUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Program.cs -------------------------------------------------------------------------------- /SEServerGUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SEServerGUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SEServerGUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Properties/Resources.resx -------------------------------------------------------------------------------- /SEServerGUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SEServerGUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Properties/Settings.settings -------------------------------------------------------------------------------- /SEServerGUI/SEServerGUI.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/SEServerGUI.Designer.cs -------------------------------------------------------------------------------- /SEServerGUI/SEServerGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/SEServerGUI.cs -------------------------------------------------------------------------------- /SEServerGUI/SEServerGUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/SEServerGUI.csproj -------------------------------------------------------------------------------- /SEServerGUI/SEServerGUI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/SEServerGUI.resx -------------------------------------------------------------------------------- /SEServerGUI/Service References/ChatServiceReference/ChatService.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ChatServiceReference/ChatService.wsdl -------------------------------------------------------------------------------- /SEServerGUI/Service References/ChatServiceReference/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ChatServiceReference/Reference.cs -------------------------------------------------------------------------------- /SEServerGUI/Service References/ChatServiceReference/Reference.svcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ChatServiceReference/Reference.svcmap -------------------------------------------------------------------------------- /SEServerGUI/Service References/ChatServiceReference/configuration.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ChatServiceReference/configuration.svcinfo -------------------------------------------------------------------------------- /SEServerGUI/Service References/ChatServiceReference/configuration91.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ChatServiceReference/configuration91.svcinfo -------------------------------------------------------------------------------- /SEServerGUI/Service References/ChatServiceReference/item.disco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ChatServiceReference/item.disco -------------------------------------------------------------------------------- /SEServerGUI/Service References/ChatServiceReference/item.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ChatServiceReference/item.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ChatServiceReference/item1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ChatServiceReference/item1.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ChatServiceReference/item2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ChatServiceReference/item2.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/PluginServiceReference/PluginService.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/PluginServiceReference/PluginService.wsdl -------------------------------------------------------------------------------- /SEServerGUI/Service References/PluginServiceReference/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/PluginServiceReference/Reference.cs -------------------------------------------------------------------------------- /SEServerGUI/Service References/PluginServiceReference/Reference.svcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/PluginServiceReference/Reference.svcmap -------------------------------------------------------------------------------- /SEServerGUI/Service References/PluginServiceReference/configuration.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/PluginServiceReference/configuration.svcinfo -------------------------------------------------------------------------------- /SEServerGUI/Service References/PluginServiceReference/configuration91.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/PluginServiceReference/configuration91.svcinfo -------------------------------------------------------------------------------- /SEServerGUI/Service References/PluginServiceReference/item.disco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/PluginServiceReference/item.disco -------------------------------------------------------------------------------- /SEServerGUI/Service References/PluginServiceReference/item.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/PluginServiceReference/item.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/PluginServiceReference/item1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/PluginServiceReference/item1.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/PluginServiceReference/item2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/PluginServiceReference/item2.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServerServiceReference/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServerServiceReference/Reference.cs -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServerServiceReference/Reference.svcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServerServiceReference/Reference.svcmap -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServerServiceReference/SEServerGUI.ServerServiceReference.ServerProxy.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServerServiceReference/SEServerGUI.ServerServiceReference.ServerProxy.datasource -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServerServiceReference/Server.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServerServiceReference/Server.wsdl -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServerServiceReference/configuration.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServerServiceReference/configuration.svcinfo -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServerServiceReference/configuration91.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServerServiceReference/configuration91.svcinfo -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServerServiceReference/item.disco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServerServiceReference/item.disco -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServerServiceReference/item.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServerServiceReference/item.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServerServiceReference/item11.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServerServiceReference/item11.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServerServiceReference/item13.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServerServiceReference/item13.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/InternalService.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/InternalService.wsdl -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/Reference.cs -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/Reference.svcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/Reference.svcmap -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/SEServerGUI.ServiceReference.BaseEntityProxy.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/SEServerGUI.ServiceReference.BaseEntityProxy.datasource -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/SEServerGUI.ServiceReference.CubeBlockEntityProxy.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/SEServerGUI.ServiceReference.CubeBlockEntityProxy.datasource -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/SEServerGUI.ServiceReference.CubeGridEntityProxy.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/SEServerGUI.ServiceReference.CubeGridEntityProxy.datasource -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/SEServerGUI.ServiceReference.InventoryItemEntityProxy.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/SEServerGUI.ServiceReference.InventoryItemEntityProxy.datasource -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/configuration.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/configuration.svcinfo -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/configuration91.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/configuration91.svcinfo -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/item.disco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/item.disco -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/item.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/item.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/item1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/item1.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/item10.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/item10.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/item2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/item2.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/item3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/item3.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/item4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/item4.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/item5.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/item5.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/item6.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/item6.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/item7.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/item7.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/item8.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/item8.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/item81.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/item81.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/item810.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/item810.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/item812.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/item812.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/item82.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/item82.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/item83.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/item83.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/item84.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/item84.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/item85.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/item85.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/item86.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/item86.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/item87.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/item87.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/item89.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/item89.xsd -------------------------------------------------------------------------------- /SEServerGUI/Service References/ServiceReference/item9.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/Service References/ServiceReference/item9.xsd -------------------------------------------------------------------------------- /SEServerGUI/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEModCommunity/SE-Community-Mod-API/HEAD/SEServerGUI/app.config --------------------------------------------------------------------------------