rename ChoosePaletteOnSelect
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
@@ -226,7 +226,7 @@
|
||||
<Compile Include="Cloak.cs" />
|
||||
<Compile Include="Modifiers\FrozenUnderFog.cs" />
|
||||
<Compile Include="Modifiers\HiddenUnderFog.cs" />
|
||||
<Compile Include="World\ChoosePaletteOnSelect.cs" />
|
||||
<Compile Include="World\ChooseBuildTabOnSelect.cs" />
|
||||
<Compile Include="Transforms.cs" />
|
||||
<Compile Include="Activities\Transform.cs" />
|
||||
<Compile Include="ActorLostNotification.cs" />
|
||||
|
||||
8
OpenRA.Mods.RA/World/ChoosePaletteOnSelect.cs → OpenRA.Mods.RA/World/ChooseBuildTabOnSelect.cs
Executable file → Normal file
8
OpenRA.Mods.RA/World/ChoosePaletteOnSelect.cs → OpenRA.Mods.RA/World/ChooseBuildTabOnSelect.cs
Executable file → Normal file
@@ -14,16 +14,16 @@ using OpenRA.Widgets;
|
||||
|
||||
namespace OpenRA.Mods.RA.Widgets
|
||||
{
|
||||
class ChoosePaletteOnSelectInfo : ITraitInfo
|
||||
class ChooseBuildTabOnSelectInfo : ITraitInfo
|
||||
{
|
||||
public object Create( ActorInitializer init ) { return new ChoosePaletteOnSelect( init ); }
|
||||
public object Create( ActorInitializer init ) { return new ChooseBuildTabOnSelect( init ); }
|
||||
}
|
||||
|
||||
class ChoosePaletteOnSelect : INotifySelection
|
||||
class ChooseBuildTabOnSelect : INotifySelection
|
||||
{
|
||||
readonly World world;
|
||||
|
||||
public ChoosePaletteOnSelect( ActorInitializer init )
|
||||
public ChooseBuildTabOnSelect( ActorInitializer init )
|
||||
{
|
||||
world = init.world;
|
||||
}
|
||||
Reference in New Issue
Block a user