c2e39cc...409d4d9
commit 409d4d96ead69028a164274637d23e350acb73fb Merge: 95169f539 26e89c63d Author: EdusFF <pitkanen.eetu@gmail.com> Date: Mon Mar 11 15:13:27 2019 +0200 Merge branch 'dev' of github.com:Regalis11/Barotrauma into dev commit 95169f53937f9a7e168a884171eaa21ae7f08023 Author: EdusFF <pitkanen.eetu@gmail.com> Date: Mon Mar 11 15:13:11 2019 +0200 Modified: ServerMessage structure to allow _ ; in player & submarine names commit 26e89c63dc8da771aea9f09978a630a6cff60a6f Merge: b7646d06d fb0b821bc Author: Joonas Rikkonen <poe.regalis@gmail.com> Date: Mon Mar 11 14:42:44 2019 +0200 Merge branch 'kuraiookami-logicExpantion' into dev # Conflicts: # Barotrauma/BarotraumaShared/SharedContent.projitems commit fb0b821bc97891cdeec8f2c740a12119696393ea Author: Joonas Rikkonen <poe.regalis@gmail.com> Date: Mon Mar 11 14:41:21 2019 +0200 Use invariant culture when parsing floats or converting them to strings in signal components commit f0c8afba934b41358cf5d59a22b87caf33f98a61 Author: Joonas Rikkonen <poe.regalis@gmail.com> Date: Mon Mar 11 14:00:44 2019 +0200 Update new signal components to use identifiers & added names and descriptions to the text file, use invariant culture in equalscomponent, memorycomponent doesn't require the signals to be floats commit 674d9ec804fc4770b602d4b09240b08cafc8ccec Merge: 3ea33fb54 242e2429f Author: Joonas Rikkonen <poe.regalis@gmail.com> Date: Mon Mar 11 12:01:27 2019 +0200 Merge branch 'logicExpantion' of https://github.com/kuraiookami/Barotrauma into kuraiookami-logicExpantion # Conflicts: # Barotrauma/BarotraumaShared/BarotraumaShared.projitems # Barotrauma/BarotraumaShared/Content/Items/Electricity/poweritems.xml # Barotrauma/BarotraumaShared/Content/Items/Electricity/signalitems.xml # Barotrauma/BarotraumaShared/Source/Items/Components/Power/PowerContainer.cs # Barotrauma/BarotraumaShared/Source/Items/Components/Signal/AdderComponent.cs commit b7646d06d53fb05227276e6286d0e15da5dc9080 Author: Joonas Rikkonen <poe.regalis@gmail.com> Date: Mon Mar 11 11:37:33 2019 +0200 Re-enabled multiplayer campaign commit cf7258f6410a5995c881ec6e95eb9def5cd90ad4 Author: Joonas Rikkonen <poe.regalis@gmail.com> Date: Mon Mar 11 11:28:48 2019 +0200 Fixed item interfaces getting repositioned every frame when the editing HUD is open. Closes #1212 commit e8906239c779cf71de694bc65c81058e5cae16ef Author: Joonas Rikkonen <poe.regalis@gmail.com> Date: Mon Mar 11 11:12:05 2019 +0200 Fixed VoipCapture creating new "could not start voice capture" popups constantly if there's no suitable capture device. Closes #1262 commit a30f47fbe47fde4fccb0453c1773a76d730d226b Author: Joonas Rikkonen <poe.regalis@gmail.com> Date: Sun Mar 10 19:04:59 2019 +0200 Disable audio instead of crashing if no audio device is found. Closes #1214 commit 242e2429fd2c3ed199ac26b55e2cbdc8636e73f9 Author: Darkwolf <Darkwolf0101@gmail.com> Date: Mon Jan 21 21:26:57 2019 -0600 Expansion of Barotrauma's logic system. Changed: - AdderComponent and children can clamp their output - Powercontainer signals for charge,charge% and charge rate Added: - ColorComponent: Dynamic signals for light set_color inputs - MemoryComponent: Stores and sends a signal that is edge latched - DivideComponent: Standard division - MultiplyComponent: Standard multiplication - SubtractComponent: Standard subtraction - XorComponent: Exclusive or - EqualsComponent: Equals comparison - GreaterComponent: Greater than comparison
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
|
||||
<TargetFrameworks>net45;net35;net40</TargetFrameworks>
|
||||
<TargetFrameworks>net45</TargetFrameworks>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<AssemblyName>Facepunch.Steamworks</AssemblyName>
|
||||
|
||||
|
||||
@@ -0,0 +1,214 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">ReleaseWindows</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProductVersion>8.0.30703</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<ProjectGuid>{0AAD36E3-51A5-4A07-AB60-5C8A66BD38B7}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>FarseerPhysics</RootNamespace>
|
||||
<AssemblyName>FarseerPhysics MonoGame</AssemblyName>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SccProjectName>
|
||||
</SccProjectName>
|
||||
<SccLocalPath>
|
||||
</SccLocalPath>
|
||||
<SccAuxPath>
|
||||
</SccAuxPath>
|
||||
<SccProvider>
|
||||
</SccProvider>
|
||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||
<TargetFrameworkProfile>
|
||||
</TargetFrameworkProfile>
|
||||
<ReleaseVersion>0.9.0.0</ReleaseVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<ApplicationIcon>
|
||||
</ApplicationIcon>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<StartupObject />
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseWindows|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>ReleaseWindows\</OutputPath>
|
||||
<DefineConstants>TRACE;WINDOWS</DefineConstants>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseLinux|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>ReleaseLinux\</OutputPath>
|
||||
<DefineConstants>TRACE;LINUX</DefineConstants>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseMac|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>ReleaseMac\</OutputPath>
|
||||
<DefineConstants>TRACE;OSX</DefineConstants>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugWindows|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<OutputPath>DebugWindows\</OutputPath>
|
||||
<DefineConstants>TRACE;DEBUG;WINDOWS</DefineConstants>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugLinux|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>DebugLinux\</OutputPath>
|
||||
<DefineConstants>TRACE;DEBUG;LINUX</DefineConstants>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugMac|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>DebugMac\</OutputPath>
|
||||
<DefineConstants>TRACE;DEBUG;OSX</DefineConstants>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Collision\Collision.cs" />
|
||||
<Compile Include="Collision\Distance.cs" />
|
||||
<Compile Include="Collision\DynamicTree.cs" />
|
||||
<Compile Include="Collision\DynamicTreeBroadPhase.cs" />
|
||||
<Compile Include="Collision\IBroadPhase.cs" />
|
||||
<Compile Include="Collision\Shapes\ChainShape.cs" />
|
||||
<Compile Include="Collision\Shapes\CircleShape.cs" />
|
||||
<Compile Include="Collision\Shapes\EdgeShape.cs" />
|
||||
<Compile Include="Collision\Shapes\PolygonShape.cs" />
|
||||
<Compile Include="Collision\Shapes\Shape.cs" />
|
||||
<Compile Include="Collision\TimeOfImpact.cs" />
|
||||
<Compile Include="Common\ConvexHull\ChainHull.cs" />
|
||||
<Compile Include="Common\ConvexHull\GiftWrap.cs" />
|
||||
<Compile Include="Common\ConvexHull\Melkman.cs" />
|
||||
<Compile Include="Common\Decomposition\BayazitDecomposer.cs" />
|
||||
<Compile Include="Common\Decomposition\CDTDecomposer.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Delaunay\DelaunayTriangle.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\AdvancingFront.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\AdvancingFrontNode.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\DTSweep.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\DTSweepConstraint.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\DTSweepContext.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\DTSweepPointComparator.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\PointOnEdgeException.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\ITriangulatable.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Orientation.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Polygon\Polygon.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Polygon\PolygonPoint.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Polygon\PolygonSet.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Sets\ConstrainedPointSet.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Sets\PointSet.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\TriangulationConstraint.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\TriangulationContext.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\TriangulationMode.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\TriangulationPoint.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\TriangulationUtil.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Util\FixedArray3.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Util\FixedBitArray3.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Util\PointGenerator.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Util\PolygonGenerator.cs" />
|
||||
<Compile Include="Common\Decomposition\EarclipDecomposer.cs" />
|
||||
<Compile Include="Common\Decomposition\FlipcodeDecomposer.cs" />
|
||||
<Compile Include="Common\Decomposition\SeidelDecomposer.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\Edge.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\MonotoneMountain.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\Node.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\Point.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\QueryGraph.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\Sink.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\Trapezoid.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\TrapezoidalMap.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\Triangulator.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\XNode.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\YNode.cs" />
|
||||
<Compile Include="Common\Decomposition\Triangulate.cs" />
|
||||
<Compile Include="Common\FixedArray.cs" />
|
||||
<Compile Include="Common\LineTools.cs" />
|
||||
<Compile Include="Common\Math.cs" />
|
||||
<Compile Include="Common\Path.cs" />
|
||||
<Compile Include="Common\PathManager.cs" />
|
||||
<Compile Include="Common\PhysicsLogic\FilterData.cs" />
|
||||
<Compile Include="Common\PhysicsLogic\PhysicsLogic.cs" />
|
||||
<Compile Include="Common\PhysicsLogic\RealExplosion.cs" />
|
||||
<Compile Include="Common\PhysicsLogic\SimpleExplosion.cs" />
|
||||
<Compile Include="Common\PolygonManipulation\CuttingTools.cs" />
|
||||
<Compile Include="Common\PolygonManipulation\SimpleCombiner.cs" />
|
||||
<Compile Include="Common\PolygonManipulation\SimplifyTools.cs" />
|
||||
<Compile Include="Common\PolygonManipulation\YuPengClipper.cs" />
|
||||
<Compile Include="Common\PolygonTools.cs" />
|
||||
<Compile Include="Common\Serialization.cs" />
|
||||
<Compile Include="Common\TextureTools\MarchingSquares.cs" />
|
||||
<Compile Include="Common\TextureTools\Terrain.cs" />
|
||||
<Compile Include="Common\TextureTools\TextureConverter.cs" />
|
||||
<Compile Include="Common\Vertices.cs" />
|
||||
<Compile Include="Controllers\AbstractForceController.cs" />
|
||||
<Compile Include="Controllers\BuoyancyController.cs" />
|
||||
<Compile Include="Controllers\Controller.cs" />
|
||||
<Compile Include="Controllers\GravityController.cs" />
|
||||
<Compile Include="Controllers\SimpleWindForce.cs" />
|
||||
<Compile Include="Controllers\VelocityLimitController.cs" />
|
||||
<Compile Include="ConvertUnits.cs" />
|
||||
<Compile Include="DebugViewBase.cs" />
|
||||
<Compile Include="Dynamics\Body.cs" />
|
||||
<Compile Include="Dynamics\BreakableBody.cs" />
|
||||
<Compile Include="Dynamics\ContactManager.cs" />
|
||||
<Compile Include="Dynamics\Contacts\Contact.cs" />
|
||||
<Compile Include="Dynamics\Contacts\ContactSolver.cs" />
|
||||
<Compile Include="Dynamics\Fixture.cs" />
|
||||
<Compile Include="Dynamics\Island.cs" />
|
||||
<Compile Include="Dynamics\Joints\AngleJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\DistanceJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\FixedMouseJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\FrictionJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\GearJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\Joint.cs" />
|
||||
<Compile Include="Dynamics\Joints\MotorJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\PrismaticJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\PulleyJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\RevoluteJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\RopeJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\WeldJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\WheelJoint.cs" />
|
||||
<Compile Include="Dynamics\TimeStep.cs" />
|
||||
<Compile Include="Dynamics\World.cs" />
|
||||
<Compile Include="Dynamics\WorldCallbacks.cs" />
|
||||
<Compile Include="Factories\BodyFactory.cs" />
|
||||
<Compile Include="Factories\FixtureFactory.cs" />
|
||||
<Compile Include="Factories\JointFactory.cs" />
|
||||
<Compile Include="Factories\LinkFactory.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Settings.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="MonoGame.Framework.DesktopGL">
|
||||
<HintPath>..\NuGet\MonoGame.Framework.DesktopGL.3.7.1.189\lib\net45\MonoGame.Framework.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup />
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
||||
+218
-219
@@ -1,220 +1,219 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">ReleaseWindows</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProductVersion>8.0.30703</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<ProjectGuid>{0AAD36E3-51A5-4A07-AB60-5C8A66BD38B7}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>FarseerPhysics</RootNamespace>
|
||||
<AssemblyName>FarseerPhysics MonoGame</AssemblyName>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SccProjectName>
|
||||
</SccProjectName>
|
||||
<SccLocalPath>
|
||||
</SccLocalPath>
|
||||
<SccAuxPath>
|
||||
</SccAuxPath>
|
||||
<SccProvider>
|
||||
</SccProvider>
|
||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||
<TargetFrameworkProfile>
|
||||
</TargetFrameworkProfile>
|
||||
<ReleaseVersion>0.9.0.0</ReleaseVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<ApplicationIcon>
|
||||
</ApplicationIcon>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<StartupObject />
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseWindows|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>ReleaseWindows\</OutputPath>
|
||||
<DefineConstants>TRACE;WINDOWS</DefineConstants>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseLinux|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>ReleaseLinux\</OutputPath>
|
||||
<DefineConstants>TRACE;LINUX</DefineConstants>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseMac|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>ReleaseMac\</OutputPath>
|
||||
<DefineConstants>TRACE;OSX</DefineConstants>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugWindows|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<OutputPath>DebugWindows\</OutputPath>
|
||||
<DefineConstants>TRACE;DEBUG;WINDOWS</DefineConstants>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugLinux|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>DebugLinux\</OutputPath>
|
||||
<DefineConstants>TRACE;DEBUG;LINUX</DefineConstants>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugMac|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>DebugMac\</OutputPath>
|
||||
<DefineConstants>TRACE;DEBUG;OSX</DefineConstants>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Collision\Collision.cs" />
|
||||
<Compile Include="Collision\Distance.cs" />
|
||||
<Compile Include="Collision\DynamicTree.cs" />
|
||||
<Compile Include="Collision\DynamicTreeBroadPhase.cs" />
|
||||
<Compile Include="Collision\IBroadPhase.cs" />
|
||||
<Compile Include="Collision\Shapes\ChainShape.cs" />
|
||||
<Compile Include="Collision\Shapes\CircleShape.cs" />
|
||||
<Compile Include="Collision\Shapes\EdgeShape.cs" />
|
||||
<Compile Include="Collision\Shapes\PolygonShape.cs" />
|
||||
<Compile Include="Collision\Shapes\Shape.cs" />
|
||||
<Compile Include="Collision\TimeOfImpact.cs" />
|
||||
<Compile Include="Common\ConvexHull\ChainHull.cs" />
|
||||
<Compile Include="Common\ConvexHull\GiftWrap.cs" />
|
||||
<Compile Include="Common\ConvexHull\Melkman.cs" />
|
||||
<Compile Include="Common\Decomposition\BayazitDecomposer.cs" />
|
||||
<Compile Include="Common\Decomposition\CDTDecomposer.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Delaunay\DelaunayTriangle.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\AdvancingFront.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\AdvancingFrontNode.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\DTSweep.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\DTSweepConstraint.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\DTSweepContext.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\DTSweepPointComparator.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\PointOnEdgeException.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\ITriangulatable.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Orientation.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Polygon\Polygon.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Polygon\PolygonPoint.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Polygon\PolygonSet.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Sets\ConstrainedPointSet.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Sets\PointSet.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\TriangulationConstraint.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\TriangulationContext.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\TriangulationMode.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\TriangulationPoint.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\TriangulationUtil.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Util\FixedArray3.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Util\FixedBitArray3.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Util\PointGenerator.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Util\PolygonGenerator.cs" />
|
||||
<Compile Include="Common\Decomposition\EarclipDecomposer.cs" />
|
||||
<Compile Include="Common\Decomposition\FlipcodeDecomposer.cs" />
|
||||
<Compile Include="Common\Decomposition\SeidelDecomposer.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\Edge.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\MonotoneMountain.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\Node.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\Point.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\QueryGraph.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\Sink.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\Trapezoid.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\TrapezoidalMap.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\Triangulator.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\XNode.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\YNode.cs" />
|
||||
<Compile Include="Common\Decomposition\Triangulate.cs" />
|
||||
<Compile Include="Common\FixedArray.cs" />
|
||||
<Compile Include="Common\LineTools.cs" />
|
||||
<Compile Include="Common\Math.cs" />
|
||||
<Compile Include="Common\Path.cs" />
|
||||
<Compile Include="Common\PathManager.cs" />
|
||||
<Compile Include="Common\PhysicsLogic\FilterData.cs" />
|
||||
<Compile Include="Common\PhysicsLogic\PhysicsLogic.cs" />
|
||||
<Compile Include="Common\PhysicsLogic\RealExplosion.cs" />
|
||||
<Compile Include="Common\PhysicsLogic\SimpleExplosion.cs" />
|
||||
<Compile Include="Common\PolygonManipulation\CuttingTools.cs" />
|
||||
<Compile Include="Common\PolygonManipulation\SimpleCombiner.cs" />
|
||||
<Compile Include="Common\PolygonManipulation\SimplifyTools.cs" />
|
||||
<Compile Include="Common\PolygonManipulation\YuPengClipper.cs" />
|
||||
<Compile Include="Common\PolygonTools.cs" />
|
||||
<Compile Include="Common\Serialization.cs" />
|
||||
<Compile Include="Common\TextureTools\MarchingSquares.cs" />
|
||||
<Compile Include="Common\TextureTools\Terrain.cs" />
|
||||
<Compile Include="Common\TextureTools\TextureConverter.cs" />
|
||||
<Compile Include="Common\Vertices.cs" />
|
||||
<Compile Include="Controllers\AbstractForceController.cs" />
|
||||
<Compile Include="Controllers\BuoyancyController.cs" />
|
||||
<Compile Include="Controllers\Controller.cs" />
|
||||
<Compile Include="Controllers\GravityController.cs" />
|
||||
<Compile Include="Controllers\SimpleWindForce.cs" />
|
||||
<Compile Include="Controllers\VelocityLimitController.cs" />
|
||||
<Compile Include="ConvertUnits.cs" />
|
||||
<Compile Include="DebugViewBase.cs" />
|
||||
<Compile Include="Dynamics\Body.cs" />
|
||||
<Compile Include="Dynamics\BreakableBody.cs" />
|
||||
<Compile Include="Dynamics\ContactManager.cs" />
|
||||
<Compile Include="Dynamics\Contacts\Contact.cs" />
|
||||
<Compile Include="Dynamics\Contacts\ContactSolver.cs" />
|
||||
<Compile Include="Dynamics\Fixture.cs" />
|
||||
<Compile Include="Dynamics\Island.cs" />
|
||||
<Compile Include="Dynamics\Joints\AngleJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\DistanceJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\FixedMouseJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\FrictionJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\GearJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\Joint.cs" />
|
||||
<Compile Include="Dynamics\Joints\MotorJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\PrismaticJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\PulleyJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\RevoluteJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\RopeJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\WeldJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\WheelJoint.cs" />
|
||||
<Compile Include="Dynamics\TimeStep.cs" />
|
||||
<Compile Include="Dynamics\World.cs" />
|
||||
<Compile Include="Dynamics\WorldCallbacks.cs" />
|
||||
<Compile Include="Factories\BodyFactory.cs" />
|
||||
<Compile Include="Factories\FixtureFactory.cs" />
|
||||
<Compile Include="Factories\JointFactory.cs" />
|
||||
<Compile Include="Factories\LinkFactory.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Settings.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Reference Condition="$(DefineConstants.Contains('WINDOWS'))" Include="MonoGame.Framework.WindowsDX">
|
||||
<HintPath>..\NuGet\MonoGame.Framework.WindowsDX.3.7.1.189\lib\net45\MonoGame.Framework.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Condition="$(DefineConstants.Contains('WINDOWS'))" Include="SharpDX">
|
||||
<HintPath>..\NuGet\SharpDX.4.2.0\lib\net45\SharpDX.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Condition="$(DefineConstants.Contains('LINUX')) OR $(DefineConstants.Contains('OSX'))" Include="MonoGame.Framework.DesktopGL">
|
||||
<HintPath>..\NuGet\MonoGame.Framework.DesktopGL.3.7.1.189\lib\net45\MonoGame.Framework.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup />
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">ReleaseWindows</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProductVersion>8.0.30703</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<ProjectGuid>{830461AA-3E2E-4BDE-9B27-1B3280836521}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>FarseerPhysics</RootNamespace>
|
||||
<AssemblyName>FarseerPhysics MonoGame</AssemblyName>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SccProjectName>
|
||||
</SccProjectName>
|
||||
<SccLocalPath>
|
||||
</SccLocalPath>
|
||||
<SccAuxPath>
|
||||
</SccAuxPath>
|
||||
<SccProvider>
|
||||
</SccProvider>
|
||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||
<TargetFrameworkProfile>
|
||||
</TargetFrameworkProfile>
|
||||
<ReleaseVersion>0.9.0.0</ReleaseVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<ApplicationIcon>
|
||||
</ApplicationIcon>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<StartupObject />
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseWindows|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>ReleaseWindows\</OutputPath>
|
||||
<DefineConstants>TRACE;WINDOWS</DefineConstants>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseLinux|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>ReleaseLinux\</OutputPath>
|
||||
<DefineConstants>TRACE;LINUX</DefineConstants>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseMac|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>ReleaseMac\</OutputPath>
|
||||
<DefineConstants>TRACE;OSX</DefineConstants>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugWindows|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<OutputPath>DebugWindows\</OutputPath>
|
||||
<DefineConstants>TRACE;DEBUG;WINDOWS</DefineConstants>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugLinux|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>DebugLinux\</OutputPath>
|
||||
<DefineConstants>TRACE;DEBUG;LINUX</DefineConstants>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugMac|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>DebugMac\</OutputPath>
|
||||
<DefineConstants>TRACE;DEBUG;OSX</DefineConstants>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " />
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " />
|
||||
<ItemGroup>
|
||||
<Compile Include="Collision\Collision.cs" />
|
||||
<Compile Include="Collision\Distance.cs" />
|
||||
<Compile Include="Collision\DynamicTree.cs" />
|
||||
<Compile Include="Collision\DynamicTreeBroadPhase.cs" />
|
||||
<Compile Include="Collision\IBroadPhase.cs" />
|
||||
<Compile Include="Collision\Shapes\ChainShape.cs" />
|
||||
<Compile Include="Collision\Shapes\CircleShape.cs" />
|
||||
<Compile Include="Collision\Shapes\EdgeShape.cs" />
|
||||
<Compile Include="Collision\Shapes\PolygonShape.cs" />
|
||||
<Compile Include="Collision\Shapes\Shape.cs" />
|
||||
<Compile Include="Collision\TimeOfImpact.cs" />
|
||||
<Compile Include="Common\ConvexHull\ChainHull.cs" />
|
||||
<Compile Include="Common\ConvexHull\GiftWrap.cs" />
|
||||
<Compile Include="Common\ConvexHull\Melkman.cs" />
|
||||
<Compile Include="Common\Decomposition\BayazitDecomposer.cs" />
|
||||
<Compile Include="Common\Decomposition\CDTDecomposer.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Delaunay\DelaunayTriangle.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\AdvancingFront.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\AdvancingFrontNode.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\DTSweep.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\DTSweepConstraint.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\DTSweepContext.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\DTSweepPointComparator.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Delaunay\Sweep\PointOnEdgeException.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\ITriangulatable.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Orientation.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Polygon\Polygon.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Polygon\PolygonPoint.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Polygon\PolygonSet.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Sets\ConstrainedPointSet.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Sets\PointSet.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\TriangulationConstraint.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\TriangulationContext.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\TriangulationMode.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\TriangulationPoint.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\TriangulationUtil.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Util\FixedArray3.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Util\FixedBitArray3.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Util\PointGenerator.cs" />
|
||||
<Compile Include="Common\Decomposition\CDT\Util\PolygonGenerator.cs" />
|
||||
<Compile Include="Common\Decomposition\EarclipDecomposer.cs" />
|
||||
<Compile Include="Common\Decomposition\FlipcodeDecomposer.cs" />
|
||||
<Compile Include="Common\Decomposition\SeidelDecomposer.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\Edge.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\MonotoneMountain.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\Node.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\Point.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\QueryGraph.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\Sink.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\Trapezoid.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\TrapezoidalMap.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\Triangulator.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\XNode.cs" />
|
||||
<Compile Include="Common\Decomposition\Seidel\YNode.cs" />
|
||||
<Compile Include="Common\Decomposition\Triangulate.cs" />
|
||||
<Compile Include="Common\FixedArray.cs" />
|
||||
<Compile Include="Common\LineTools.cs" />
|
||||
<Compile Include="Common\Math.cs" />
|
||||
<Compile Include="Common\Path.cs" />
|
||||
<Compile Include="Common\PathManager.cs" />
|
||||
<Compile Include="Common\PhysicsLogic\FilterData.cs" />
|
||||
<Compile Include="Common\PhysicsLogic\PhysicsLogic.cs" />
|
||||
<Compile Include="Common\PhysicsLogic\RealExplosion.cs" />
|
||||
<Compile Include="Common\PhysicsLogic\SimpleExplosion.cs" />
|
||||
<Compile Include="Common\PolygonManipulation\CuttingTools.cs" />
|
||||
<Compile Include="Common\PolygonManipulation\SimpleCombiner.cs" />
|
||||
<Compile Include="Common\PolygonManipulation\SimplifyTools.cs" />
|
||||
<Compile Include="Common\PolygonManipulation\YuPengClipper.cs" />
|
||||
<Compile Include="Common\PolygonTools.cs" />
|
||||
<Compile Include="Common\Serialization.cs" />
|
||||
<Compile Include="Common\TextureTools\MarchingSquares.cs" />
|
||||
<Compile Include="Common\TextureTools\Terrain.cs" />
|
||||
<Compile Include="Common\TextureTools\TextureConverter.cs" />
|
||||
<Compile Include="Common\Vertices.cs" />
|
||||
<Compile Include="Controllers\AbstractForceController.cs" />
|
||||
<Compile Include="Controllers\BuoyancyController.cs" />
|
||||
<Compile Include="Controllers\Controller.cs" />
|
||||
<Compile Include="Controllers\GravityController.cs" />
|
||||
<Compile Include="Controllers\SimpleWindForce.cs" />
|
||||
<Compile Include="Controllers\VelocityLimitController.cs" />
|
||||
<Compile Include="ConvertUnits.cs" />
|
||||
<Compile Include="DebugViewBase.cs" />
|
||||
<Compile Include="Dynamics\Body.cs" />
|
||||
<Compile Include="Dynamics\BreakableBody.cs" />
|
||||
<Compile Include="Dynamics\ContactManager.cs" />
|
||||
<Compile Include="Dynamics\Contacts\Contact.cs" />
|
||||
<Compile Include="Dynamics\Contacts\ContactSolver.cs" />
|
||||
<Compile Include="Dynamics\Fixture.cs" />
|
||||
<Compile Include="Dynamics\Island.cs" />
|
||||
<Compile Include="Dynamics\Joints\AngleJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\DistanceJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\FixedMouseJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\FrictionJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\GearJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\Joint.cs" />
|
||||
<Compile Include="Dynamics\Joints\MotorJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\PrismaticJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\PulleyJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\RevoluteJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\RopeJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\WeldJoint.cs" />
|
||||
<Compile Include="Dynamics\Joints\WheelJoint.cs" />
|
||||
<Compile Include="Dynamics\TimeStep.cs" />
|
||||
<Compile Include="Dynamics\World.cs" />
|
||||
<Compile Include="Dynamics\WorldCallbacks.cs" />
|
||||
<Compile Include="Factories\BodyFactory.cs" />
|
||||
<Compile Include="Factories\FixtureFactory.cs" />
|
||||
<Compile Include="Factories\JointFactory.cs" />
|
||||
<Compile Include="Factories\LinkFactory.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Settings.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="MonoGame.Framework.WindowsDX">
|
||||
<HintPath>..\NuGet\MonoGame.Framework.WindowsDX.3.7.1.189\lib\net45\MonoGame.Framework.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="SharpDX">
|
||||
<HintPath>..\NuGet\SharpDX.4.2.0\lib\net45\SharpDX.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup />
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
||||
Reference in New Issue
Block a user