forked from LocoNeko/RoadsOfTheRim
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restructured the settings menu to make it less confusing
- Loading branch information
Showing
50 changed files
with
1,768 additions
and
1,261 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{32C59479-1ECF-4609-BD0D-BB12658BF92B}</ProjectGuid> | ||
<OutputType>Library</OutputType> | ||
<NoStandardLibraries>false</NoStandardLibraries> | ||
<AssemblyName>RoadsOfTheRim</AssemblyName> | ||
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion> | ||
<FileAlignment>512</FileAlignment> | ||
<TargetFrameworkProfile /> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>..\..\1.2\Assemblies\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<Prefer32Bit>false</Prefer32Bit> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>..\..\1.2\Assemblies\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<Prefer32Bit>false</Prefer32Bit> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<RootNamespace>RoadsOfTheRim</RootNamespace> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Krafs.Rimworld.Ref"> | ||
<Version>1.2.2753</Version> | ||
<ExcludeAssets>runtime</ExcludeAssets> | ||
<IncludeAssets>compile; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Lib.Harmony"> | ||
<Version>2.0.2</Version> | ||
<ExcludeAssets>runtime</ExcludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="Bridges.cs" /> | ||
<Compile Include="CaravanArrivalAction_StartWorkingOnRoad.cs" /> | ||
<Compile Include="OldDefsCleanup.cs" /> | ||
<Compile Include="WorldLayer_RoadsOnWater.cs" /> | ||
<Compile Include="ConstructionMenu.cs" /> | ||
<Compile Include="DefModExtension_RotR_RoadDef.cs" /> | ||
<Compile Include="GenStep_CleanBuiltRoads.cs" /> | ||
<Compile Include="HarmonyPatches.cs" /> | ||
<Compile Include="ModMain.cs" /> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
<Compile Include="RoadConstructionLeg.cs" /> | ||
<Compile Include="RoadConstructionSite.cs" /> | ||
<Compile Include="WITab_Caravan_Build.cs" /> | ||
<Compile Include="WorldComponent_FactionHelpConstruction.cs" /> | ||
<Compile Include="WorldComponent_RoadBuildingState.cs" /> | ||
<Compile Include="WorldObjectComp_Caravan.cs" /> | ||
<Compile Include="WorldObjectComp_ConstructionSite.cs" /> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSHARP.Targets" /> | ||
<ProjectExtensions> | ||
<VisualStudio AllowExistingFolder="true" /> | ||
</ProjectExtensions> | ||
</Project> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
namespace RoadsOfTheRim | ||
{ | ||
public enum CaravanState : byte | ||
{ | ||
Moving, | ||
NightResting, | ||
AllOwnersHaveMentalBreak, | ||
AllOwnersDowned, | ||
ImmobilizedByMass, | ||
ReadyToWork | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
Source/RoadsOfTheRim/CompProperties_RoadsOfTheRimConstructionSite.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using RimWorld; | ||
|
||
namespace RoadsOfTheRim | ||
{ | ||
public class CompProperties_RoadsOfTheRimConstructionSite : WorldObjectCompProperties | ||
{ | ||
public CompProperties_RoadsOfTheRimConstructionSite() | ||
{ | ||
compClass = typeof(WorldObjectComp_ConstructionSite); | ||
} | ||
} | ||
} |
Oops, something went wrong.