diff --git a/DLL_stripped/Assembly-CSharp-stripped.dll b/DLL_stripped/Assembly-CSharp-stripped.dll new file mode 100644 index 000000000..8c3b68067 Binary files /dev/null and b/DLL_stripped/Assembly-CSharp-stripped.dll differ diff --git a/DLL_stripped/Assembly-CSharp-stripped.xml b/DLL_stripped/Assembly-CSharp-stripped.xml new file mode 100644 index 000000000..15251a4ee --- /dev/null +++ b/DLL_stripped/Assembly-CSharp-stripped.xml @@ -0,0 +1,565 @@ + + + +Assembly-CSharp + + + + + The current patch for this OrbiterComponent. + + + + + + The list of patches generated by ManeuverPlanSolver. + + + + + + The current patch for this OrbiterComponent. + + + + + + The reverse flag for this OrbiterComponent. If true, the orbit progresses retrograde? + + + + + + The action triggered when this OrbiterComponent's state has been updated. See UpdatePosition, UpdateVelocity, and UpdateFromStateVectors. + + + + + + The action triggered when the reference body changes, e.g. when transitioning across an SOI boundary. + + + + + + The PatchedConicSolver for this OrbiterComponent. + + + + + + The ManeuverPlanSolver for this OrbiterComponent. + + + + + + The OrbitTargeter for this OrbiterComponent. + + + + + + The coordinate system for this OrbiterComponent. + + + + + + The current local position for this OrbiterComponent. + [TypeConverterIgnore] + + + + + The current relative motion for this OrbiterComponent. + + + + + + The current relative velocity for this OrbiterComponent. + + + + + + The Position structure for this OrbiterComponent. + + + + + + Updates the Position structure for this OrbiterComponent. To update both position and velocity use UpdateFromStateVectors. + + + + + + + The action triggered when the position is updated. + + + + + + The Velocity structure for this OrbiterComponent. + + + + + + Updates the Velocity structure for this OrbiterComponent. To update both position and velocity use UpdateFromStateVectors + + + + + + + The action triggered when the velocity is updated + + + + + + Updates both the Position structure and Velocity structure for this OrbiterComponent. To update only position or velocity use either UpdatePosition or UpdateVelocity respectively. + + + + + + + + Configures a (new) (blank?) OrbiterComponent. + + + + + + Configures a (new) OrbiterComponent using the supplied universeModel. + + + + + + + Configures a (new) OrbiterComponent using the supplied orbiterDefinition and universeModel. + + + + + + + + + + + + + + + + Sets the stateData for this OrbiterComponent using the supplied KeplerOrbitState, universalTime, and simulationModelMap. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Updates this OrbiterComponent from parameters at the supplied universalTime? Confirm and update documentation as needed. + + + + + + + Checks the orbital stability for this OrbiterComponent. + + + + + + Checks for object collisions (for?/with?) inactive vessel(s?). Confirm and update documentation please. + + + + + + + No clue. Please investigate and update + + + + + + + + + Max value = 10 + + + + + + List of maneuver trajecotries. + + + + + + List of patched conic orbits. + + + + + + List of Patched N-Body Orbits. + + + + + + The target celestial body. + + + + + + A flag indicating if this maneuver plan has an active maneuver. + + + + + + Creates a ManeuverPlanSolver using the supplied UniverseModel for the supplied OrbiterComponent. + + + + + + + + Good question! + + + + + + Mono behavior called automatically. + + + + + + Mono behavior called automatically. + + + + + + Updates all the PatchedConicsOrbit list for this maneuver plan? + + + + + + Sets the maneuver trajectory to be "dirty" - meaning in need of update? + + + + + + Sets this maneuver plan to start at the given maneuver node index. + + + + + + + Set the TargetBody pameter using the supplied CelestialBodyComponent. + + + + + + + Calculates the PatchedConicsList. + + + + + + + Initialized the first patched conic orbit in the PatchedConicsList using the supplied maneuverNumber. + + + + + + + Attempts to solve the maneuver plan using the odeManeuverNode. + + + + + + + Updates the position and velocity vectors for the SOI transition using the supplier patch and patchedNBodyOrbit. + + + + + + + + + + + + + + + Returns the patch from the supplied pathcLust containing the supplied ut. + + + + + + + + + + Returns the patch from the supplied pathcLust containing the supplied ut. + + + + + + + + + + Removes all ODE Maneuver Nodes for this ManeuverPlanSolver. + + + + + + Sets all patches in the PatchedConicList to be inactive. + + + + + + + + Handles adding the supplied nodeAdded to the supplied list of nodes. + + + + + + + + Handles removing the supplied list of nodes to remove (removedNodes) from the supplier list of currentNodes. + + + + + + + + Sets the doSolve flag to the supplied value for this ManeuverPlanSolver. + + + + + + + Applies the updated ManeuverNodeData (nodeChanged) to the list of nodes for this ManeuverPlanSolver. + + + + + + + + Finds the patches affected by the specified nodeChanged for the list of nodes, outputting the nunConics, numNBody and the wasFound flag. + + + + + + + + + + + Updates the list of maneuver nodes supplied using the nodeChanged structure supplied. + + + + + + + + Updates the list of maneuver nodes supplied using the nodeChanged structure supplied (default null), numNBody (default 0), and numConics (default 0). + + + + + + + + + + Calculates the ODE Maneuver Nodes for the list of maneuver nodes supplied. + + + + + + + + + Integrator method enumeration (RK23, RK45) + + + + + + The maximum limit on the number of patches. The default value = 10. + + + + + + The ObiterComponent object this class is associated with. + + + + + + A list of PatchedConicOrbits. May be given an index to obtain a particular trajectory. It’s basically a list of all the trajectories currently associated with this Orbiter object, and you can do things with it like any list. The length of the list will be no longer than MaxTotalPatches, with list members being chronologically organized from the patch that occurs first to the last patch. Unused members are null. + + + + + + The number of patches ahead. The game sets this in the private method PatchedConicSolver.CalculatePatchList() + + + + + + First tests to see if the Orbiter object is null. If it is, then it returns immediately. Otherwise, it will remove the handler for OnReferenceBodyChange which was added by the OnStart method. + + + + + + First tests to see if the Orbiter object is null. If it is, then it returns immediately. Otherwise, it will remove the handler for OnReferenceBodyChange which was added by the OnStart method. + + + + + + Adds a new handler for the Orbiter.OnReferenceBodyChange method so that OnReferenceBodyChange will be called when necessary. It then sets the private _patchLimit to be the max of PersistentProfileManager.ConicPatchLimit and 1, adds this.Orbiter.PatchedConicsOrbit to the CurrentTrajectory list, and similarly adds any remaining patches from 1 to MaxTotalPatches. + + + + + + You'd think calling this would cause the patch list to be updated, wouldn't you? Well, you're wrong. Deal with it. + + + + + + Accepts a list of patches (i.e., CurrentTrajectory) and (optionally) a starting index for the list (defaults to 0). For each list member from the starting index to the end of the list, the member's ActivePatch property is set to false. + NOTE: When called by ManeuverPlanSolver.UpdateManeuverTrajectory(), this method is called after calling ManeuverPlanSolver.SetPatchesInactive. + + + + + + + + Initialize the first patch in the patchlist. + + + + + + Accepts a CelestialBodyComponent and uses that to set the private _targetBody. This sets the target to be used when generating the patch list. + + + + + + + Accepts a double (the universal time of interest) and returns the PatchedConicOrbit for the patch associated with that time. + + + + + + + + Decreases the current setting of the private _pathcLimit property by 1 to a value that is never less than 1. + + + + + + Action triggered by reference body change? + + + + + + + + Increases the current setting of the private _pathcLimit property by 1 to a value that is never more than 5. + + + + + + Clamps the current setting of the private _pathcLimit property to be between 1 and 5 inclusively. + + + + + + Defines the parameters needed for the solver with default values assigned to maxGeometrySolverIterations (25), maxTimeSolverIterations (50), and outerReaches (1E+20). + + + + + diff --git a/src_stripped/Assembly-CSharp-stripped.csproj b/src_stripped/Assembly-CSharp-stripped.csproj index c0bf84bbd..ba98c2a75 100644 --- a/src_stripped/Assembly-CSharp-stripped.csproj +++ b/src_stripped/Assembly-CSharp-stripped.csproj @@ -1,10 +1,10 @@  - + Debug AnyCPU - {5C0F1D12-00F3-4C73-8CA4-148DFAC37EAA} + {F6EE171A-8921-47F5-B859-0B73B3BAE7F8} Library Assembly-CSharp 0.0.0.0 @@ -961,9 +961,18 @@ - + + + + + + + + + + @@ -1326,6 +1335,7 @@ + @@ -1343,7 +1353,6 @@ - @@ -1552,47 +1561,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1775,3469 +1743,3002 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -5528,138 +5029,577 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -5973,6 +5913,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src_stripped/Assembly-CSharp-stripped.pdb b/src_stripped/Assembly-CSharp-stripped.pdb index 3adeb8518..2f2343d8f 100644 Binary files a/src_stripped/Assembly-CSharp-stripped.pdb and b/src_stripped/Assembly-CSharp-stripped.pdb differ diff --git a/src_stripped/Assembly-CSharp-stripped.sln b/src_stripped/Assembly-CSharp-stripped.sln index f620af95c..180d5b076 100644 --- a/src_stripped/Assembly-CSharp-stripped.sln +++ b/src_stripped/Assembly-CSharp-stripped.sln @@ -1,7 +1,7 @@ Microsoft Visual Studio Solution File, Format Version 9.00 # Visual Studio 2005 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp", "Assembly-CSharp_0.1.3.2-stripped.csproj", "{5C0F1D12-00F3-4C73-8CA4-148DFAC37EAA}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp", "Assembly-CSharp-stripped.csproj", "{F6EE171A-8921-47F5-B859-0B73B3BAE7F8}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -9,10 +9,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {5C0F1D12-00F3-4C73-8CA4-148DFAC37EAA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {5C0F1D12-00F3-4C73-8CA4-148DFAC37EAA}.Debug|Any CPU.Build.0 = Debug|Any CPU - {5C0F1D12-00F3-4C73-8CA4-148DFAC37EAA}.Release|Any CPU.ActiveCfg = Release|Any CPU - {5C0F1D12-00F3-4C73-8CA4-148DFAC37EAA}.Release|Any CPU.Build.0 = Release|Any CPU + {F6EE171A-8921-47F5-B859-0B73B3BAE7F8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F6EE171A-8921-47F5-B859-0B73B3BAE7F8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F6EE171A-8921-47F5-B859-0B73B3BAE7F8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F6EE171A-8921-47F5-B859-0B73B3BAE7F8}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE