This commit is contained in:
Chris Forbes
2010-02-27 20:17:27 +13:00
parent ed55078e83
commit 11b926a422
290 changed files with 591 additions and 591 deletions

View File

@@ -55,9 +55,9 @@
<Compile Include="ServerOrder.cs" /> <Compile Include="ServerOrder.cs" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\OpenRa.FileFormats\OpenRa.FileFormats.csproj"> <ProjectReference Include="..\OpenRa.FileFormats\OpenRA.FileFormats.csproj">
<Project>{BDAEAB25-991E-46A7-AF1E-4F0E03358DAA}</Project> <Project>{BDAEAB25-991E-46A7-AF1E-4F0E03358DAA}</Project>
<Name>OpenRa.FileFormats</Name> <Name>OpenRA.FileFormats</Name>
</ProjectReference> </ProjectReference>
</ItemGroup> </ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

View File

@@ -26,8 +26,8 @@ using System.Linq;
using System.Net; using System.Net;
using System.Net.Sockets; using System.Net.Sockets;
using System.Security.Cryptography; using System.Security.Cryptography;
using OpenRa; using OpenRA;
using OpenRa.FileFormats; using OpenRA.FileFormats;
namespace OpenRA.Server namespace OpenRA.Server
{ {

View File

@@ -21,7 +21,7 @@
using System; using System;
using System.IO; using System.IO;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
[Flags] [Flags]
enum SoundFlags enum SoundFlags

View File

@@ -18,7 +18,7 @@
*/ */
#endregion #endregion
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
class Blowfish class Blowfish
{ {

View File

@@ -21,7 +21,7 @@
using System; using System;
using System.Linq; using System.Linq;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
/* possibly the fugliest C# i've ever seen. */ /* possibly the fugliest C# i've ever seen. */

View File

@@ -22,7 +22,7 @@ using System;
using System.Collections; using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public class Cache<T, U> : IEnumerable<KeyValuePair<T, U>> public class Cache<T, U> : IEnumerable<KeyValuePair<T, U>>
{ {

View File

@@ -22,7 +22,7 @@ using System;
using System.Collections; using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
namespace OpenRa.Collections namespace OpenRA.Collections
{ {
public class Set<T> : IEnumerable<T> public class Set<T> : IEnumerable<T>
{ {

View File

@@ -20,7 +20,7 @@
using System; using System;
namespace OpenRa namespace OpenRA
{ {
public class DisposableAction : IDisposable public class DisposableAction : IDisposable
{ {

View File

@@ -23,7 +23,7 @@ using System.Collections.Generic;
using System.Drawing; using System.Drawing;
using System.IO; using System.IO;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public enum Dune2ImageFlags : int public enum Dune2ImageFlags : int
{ {

View File

@@ -21,7 +21,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace OpenRa namespace OpenRA
{ {
public static class Exts public static class Exts
{ {

View File

@@ -22,7 +22,7 @@ using System;
using System.Linq; using System.Linq;
using System.Reflection; using System.Reflection;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public static class FieldLoader public static class FieldLoader
{ {

View File

@@ -22,7 +22,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public static class FileSystem public static class FileSystem
{ {

View File

@@ -21,7 +21,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public class Folder : IFolder public class Folder : IFolder
{ {

View File

@@ -18,7 +18,7 @@
*/ */
#endregion #endregion
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public static class Format2 public static class Format2
{ {

View File

@@ -18,7 +18,7 @@
*/ */
#endregion #endregion
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public static class Format40 public static class Format40
{ {

View File

@@ -20,7 +20,7 @@
using System; using System;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
class FastByteReader class FastByteReader
{ {

View File

@@ -22,7 +22,7 @@ using System;
using System.Drawing; using System.Drawing;
using System.IO; using System.IO;
namespace OpenRa.FileFormats.Graphics namespace OpenRA.FileFormats.Graphics
{ {
[AttributeUsage( AttributeTargets.Assembly )] [AttributeUsage( AttributeTargets.Assembly )]
public class RendererAttribute : Attribute public class RendererAttribute : Attribute

View File

@@ -20,7 +20,7 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace OpenRa.FileFormats.Graphics namespace OpenRA.FileFormats.Graphics
{ {
[StructLayout(LayoutKind.Sequential)] [StructLayout(LayoutKind.Sequential)]
public struct Vertex public struct Vertex

View File

@@ -20,7 +20,7 @@
using System.Drawing; using System.Drawing;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public interface IPaletteRemap public interface IPaletteRemap
{ {

View File

@@ -24,7 +24,7 @@ using System.Collections.Generic;
using System.IO; using System.IO;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public class IniFile public class IniFile
{ {

View File

@@ -20,7 +20,7 @@
using System; using System;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public class Lazy<T> public class Lazy<T>
{ {

View File

@@ -24,7 +24,7 @@ using System.IO;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public class Map public class Map
{ {

View File

@@ -23,7 +23,7 @@ using System.Collections.Generic;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
using MiniYamlNodes = Dictionary<string, MiniYaml>; using MiniYamlNodes = Dictionary<string, MiniYaml>;

View File

@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
<PropertyGroup> <PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -8,8 +8,8 @@
<ProjectGuid>{BDAEAB25-991E-46A7-AF1E-4F0E03358DAA}</ProjectGuid> <ProjectGuid>{BDAEAB25-991E-46A7-AF1E-4F0E03358DAA}</ProjectGuid>
<OutputType>Library</OutputType> <OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder> <AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>OpenRa.FileFormats</RootNamespace> <RootNamespace>OpenRA.FileFormats</RootNamespace>
<AssemblyName>OpenRa.FileFormats</AssemblyName> <AssemblyName>OpenRA.FileFormats</AssemblyName>
<FileUpgradeFlags> <FileUpgradeFlags>
</FileUpgradeFlags> </FileUpgradeFlags>
<OldToolsVersion>2.0</OldToolsVersion> <OldToolsVersion>2.0</OldToolsVersion>

View File

@@ -23,7 +23,7 @@ using System.Collections.Generic;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public interface IFolder public interface IFolder
{ {

View File

@@ -22,7 +22,7 @@ using System.Collections.Generic;
using System.IO; using System.IO;
using System.Text; using System.Text;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public class PackageEntry public class PackageEntry
{ {

View File

@@ -20,7 +20,7 @@
using System.Collections.Generic; using System.Collections.Generic;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public struct Pair<T, U> public struct Pair<T, U>
{ {

View File

@@ -22,7 +22,7 @@ using System.Collections.Generic;
using System.Drawing; using System.Drawing;
using System.IO; using System.IO;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public class Palette public class Palette
{ {

View File

@@ -23,7 +23,7 @@ using System.Drawing;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public class PlayerColorRemap : IPaletteRemap public class PlayerColorRemap : IPaletteRemap
{ {

View File

@@ -21,7 +21,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public class PriorityQueue<T> public class PriorityQueue<T>
where T : IComparable<T> where T : IComparable<T>

View File

@@ -18,7 +18,7 @@
*/ */
#endregion #endregion
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public static class ProtocolVersion public static class ProtocolVersion
{ {

View File

@@ -21,7 +21,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public class Session public class Session
{ {

View File

@@ -23,7 +23,7 @@ using System.Collections.Generic;
using System.Drawing; using System.Drawing;
using System.IO; using System.IO;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public class ImageHeader public class ImageHeader
{ {

View File

@@ -20,7 +20,7 @@
using System.Drawing; using System.Drawing;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public class ShroudPaletteRemap : IPaletteRemap public class ShroudPaletteRemap : IPaletteRemap
{ {

View File

@@ -20,7 +20,7 @@
using System.Drawing; using System.Drawing;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public class SingleColorRemap : IPaletteRemap public class SingleColorRemap : IPaletteRemap
{ {

View File

@@ -20,7 +20,7 @@
using System.IO; using System.IO;
namespace OpenRa namespace OpenRA
{ {
public static class Log public static class Log
{ {

View File

@@ -19,7 +19,7 @@
#endregion #endregion
using Tao.Sdl; using Tao.Sdl;
namespace OpenRa.Support namespace OpenRA.Support
{ {
public class Stopwatch public class Stopwatch
{ {

View File

@@ -18,7 +18,7 @@
*/ */
#endregion #endregion
namespace OpenRa.Support namespace OpenRA.Support
{ {
public static class Timer public static class Timer
{ {

View File

@@ -21,7 +21,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public class Terrain public class Terrain
{ {

View File

@@ -18,7 +18,7 @@
*/ */
#endregion #endregion
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public struct TileReference public struct TileReference
{ {

View File

@@ -22,7 +22,7 @@ using System.Collections.Generic;
using System.Globalization; using System.Globalization;
using System.IO; using System.IO;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public class TileSet public class TileSet
{ {

View File

@@ -20,7 +20,7 @@
using System.Drawing; using System.Drawing;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public struct TreeReference public struct TreeReference
{ {

View File

@@ -18,7 +18,7 @@
*/ */
#endregion #endregion
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public class Tuple<A, B, C> public class Tuple<A, B, C>
{ {

View File

@@ -22,7 +22,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public class TypeDictionary public class TypeDictionary
{ {

View File

@@ -21,7 +21,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
namespace OpenRa.FileFormats namespace OpenRA.FileFormats
{ {
public class TileTemplate public class TileTemplate
{ {

View File

@@ -22,7 +22,7 @@ using System;
using System.Drawing; using System.Drawing;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace OpenRa namespace OpenRA
{ {
[StructLayout(LayoutKind.Sequential)] [StructLayout(LayoutKind.Sequential)]
public struct float2 public struct float2

View File

@@ -21,7 +21,7 @@
using System; using System;
using System.Drawing; using System.Drawing;
namespace OpenRa namespace OpenRA
{ {
public struct int2 public struct int2
{ {

View File

@@ -21,12 +21,12 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Drawing; using System.Drawing;
using System.Linq; using System.Linq;
using OpenRa.FileFormats; using OpenRA.FileFormats;
using OpenRa.GameRules; using OpenRA.GameRules;
using OpenRa.Traits; using OpenRA.Traits;
using OpenRa.Traits.Activities; using OpenRA.Traits.Activities;
namespace OpenRa namespace OpenRA
{ {
public class Actor public class Actor
{ {

View File

@@ -20,10 +20,10 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Drawing; using System.Drawing;
using OpenRa.FileFormats; using OpenRA.FileFormats;
using OpenRa.Traits; using OpenRA.Traits;
namespace OpenRa namespace OpenRA
{ {
class Chat class Chat
{ {

View File

@@ -23,13 +23,13 @@ using System.Collections.Generic;
using System.Drawing; using System.Drawing;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
using OpenRa.FileFormats; using OpenRA.FileFormats;
using OpenRa.Graphics; using OpenRA.Graphics;
using OpenRa.Orders; using OpenRA.Orders;
using OpenRa.Support; using OpenRA.Support;
using OpenRa.Traits; using OpenRA.Traits;
namespace OpenRa namespace OpenRA
{ {
class Chrome : IHandleInput class Chrome : IHandleInput
{ {
@@ -129,7 +129,7 @@ namespace OpenRa
tabImageNames = groups.Select( tabImageNames = groups.Select(
(g, i) => Pair.New(g, (g, i) => Pair.New(g,
OpenRa.Graphics.Util.MakeArray(3, OpenRA.Graphics.Util.MakeArray(3,
n => i.ToString()))) n => i.ToString())))
.ToDictionary(a => a.First, a => a.Second); .ToDictionary(a => a.First, a => a.Second);

View File

@@ -20,11 +20,11 @@
using System; using System;
using System.Linq; using System.Linq;
using OpenRa.Effects; using OpenRA.Effects;
using OpenRa.GameRules; using OpenRA.GameRules;
using OpenRa.Traits; using OpenRA.Traits;
namespace OpenRa namespace OpenRA
{ {
static class Combat /* some utility bits that are shared between various things */ static class Combat /* some utility bits that are shared between various things */
{ {

View File

@@ -20,12 +20,12 @@
using System; using System;
using System.Linq; using System.Linq;
using OpenRa.FileFormats; using OpenRA.FileFormats;
using OpenRa.Graphics; using OpenRA.Graphics;
using OpenRa.Orders; using OpenRA.Orders;
using OpenRa.Traits; using OpenRA.Traits;
namespace OpenRa namespace OpenRA
{ {
public class Controller : IHandleInput public class Controller : IHandleInput
{ {

View File

@@ -18,9 +18,9 @@
*/ */
#endregion #endregion
using OpenRa.Graphics; using OpenRA.Graphics;
namespace OpenRa namespace OpenRA
{ {
public class Cursor public class Cursor
{ {

View File

@@ -19,11 +19,11 @@
#endregion #endregion
using System.Collections.Generic; using System.Collections.Generic;
using OpenRa.GameRules; using OpenRA.GameRules;
using OpenRa.Graphics; using OpenRA.Graphics;
using OpenRa.Traits; using OpenRA.Traits;
namespace OpenRa.Effects namespace OpenRA.Effects
{ {
public class Bullet : IEffect public class Bullet : IEffect
{ {

View File

@@ -19,10 +19,10 @@
#endregion #endregion
using System.Collections.Generic; using System.Collections.Generic;
using OpenRa.Graphics; using OpenRA.Graphics;
using OpenRa.Traits; using OpenRA.Traits;
namespace OpenRa.Effects namespace OpenRA.Effects
{ {
class Corpse : IEffect class Corpse : IEffect
{ {

View File

@@ -20,9 +20,9 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using OpenRa.Traits; using OpenRA.Traits;
namespace OpenRa.Effects namespace OpenRA.Effects
{ {
public class DelayedAction : IEffect public class DelayedAction : IEffect
{ {

View File

@@ -19,10 +19,10 @@
#endregion #endregion
using System.Collections.Generic; using System.Collections.Generic;
using OpenRa.Graphics; using OpenRA.Graphics;
using OpenRa.Traits; using OpenRA.Traits;
namespace OpenRa.Effects namespace OpenRA.Effects
{ {
public class Explosion : IEffect public class Explosion : IEffect
{ {

View File

@@ -20,9 +20,9 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using OpenRa.Traits; using OpenRA.Traits;
namespace OpenRa.Effects namespace OpenRA.Effects
{ {
class FlashTarget : IEffect class FlashTarget : IEffect
{ {

View File

@@ -19,9 +19,9 @@
#endregion #endregion
using System.Collections.Generic; using System.Collections.Generic;
using OpenRa.Traits; using OpenRA.Traits;
namespace OpenRa.Effects namespace OpenRA.Effects
{ {
public interface IEffect public interface IEffect
{ {

View File

@@ -20,9 +20,9 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Drawing; using System.Drawing;
using OpenRa.Traits; using OpenRA.Traits;
namespace OpenRa.Effects namespace OpenRA.Effects
{ {
class LaserZap : IEffect class LaserZap : IEffect
{ {

View File

@@ -20,11 +20,11 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using OpenRa.GameRules; using OpenRA.GameRules;
using OpenRa.Graphics; using OpenRA.Graphics;
using OpenRa.Traits; using OpenRA.Traits;
namespace OpenRa.Effects namespace OpenRA.Effects
{ {
class Missile : IEffect class Missile : IEffect
{ {

View File

@@ -19,10 +19,10 @@
#endregion #endregion
using System.Collections.Generic; using System.Collections.Generic;
using OpenRa.Graphics; using OpenRA.Graphics;
using OpenRa.Traits; using OpenRA.Traits;
namespace OpenRa.Effects namespace OpenRA.Effects
{ {
class MoveFlash : IEffect class MoveFlash : IEffect
{ {

View File

@@ -19,10 +19,10 @@
#endregion #endregion
using System.Collections.Generic; using System.Collections.Generic;
using OpenRa.Graphics; using OpenRA.Graphics;
using OpenRa.Traits; using OpenRA.Traits;
namespace OpenRa.Effects namespace OpenRA.Effects
{ {
class RepairIndicator : IEffect class RepairIndicator : IEffect
{ {

View File

@@ -19,10 +19,10 @@
#endregion #endregion
using System.Collections.Generic; using System.Collections.Generic;
using OpenRa.Graphics; using OpenRA.Graphics;
using OpenRa.Traits; using OpenRA.Traits;
namespace OpenRa.Effects namespace OpenRA.Effects
{ {
class Smoke : IEffect class Smoke : IEffect
{ {

View File

@@ -19,10 +19,10 @@
#endregion #endregion
using System.Collections.Generic; using System.Collections.Generic;
using OpenRa.Graphics; using OpenRA.Graphics;
using OpenRa.Traits; using OpenRA.Traits;
namespace OpenRa.Effects namespace OpenRA.Effects
{ {
class TeslaZap : IEffect class TeslaZap : IEffect
{ {

View File

@@ -21,10 +21,10 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using OpenRa.GameRules; using OpenRA.GameRules;
using OpenRa.Traits; using OpenRA.Traits;
namespace OpenRa namespace OpenRA
{ {
public static class Exts public static class Exts
{ {

View File

@@ -23,17 +23,17 @@ using System.Collections.Generic;
using System.Drawing; using System.Drawing;
using System.Linq; using System.Linq;
using System.Windows.Forms; using System.Windows.Forms;
using OpenRa.FileFormats; using OpenRA.FileFormats;
using OpenRa.GameRules; using OpenRA.GameRules;
using OpenRa.Graphics; using OpenRA.Graphics;
using OpenRa.Network; using OpenRA.Network;
using OpenRa.Support; using OpenRA.Support;
using OpenRa.Traits; using OpenRA.Traits;
using Timer = OpenRa.Support.Timer; using Timer = OpenRA.Support.Timer;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.IO; using System.IO;
namespace OpenRa namespace OpenRA
{ {
public static class Game public static class Game
{ {

View File

@@ -23,10 +23,10 @@ using System.Collections.Generic;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
using System.Reflection; using System.Reflection;
using OpenRa.FileFormats; using OpenRA.FileFormats;
using OpenRa.Traits; using OpenRA.Traits;
namespace OpenRa.GameRules namespace OpenRA.GameRules
{ {
public class ActorInfo public class ActorInfo
{ {

View File

@@ -21,9 +21,9 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using OpenRa.Traits; using OpenRA.Traits;
namespace OpenRa.GameRules namespace OpenRA.GameRules
{ {
static class Footprint static class Footprint
{ {

View File

@@ -20,7 +20,7 @@
using System; using System;
namespace OpenRa.GameRules namespace OpenRA.GameRules
{ {
public class GeneralInfo public class GeneralInfo
{ {

View File

@@ -21,9 +21,9 @@
using System; using System;
using System.Collections; using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
using OpenRa.FileFormats; using OpenRA.FileFormats;
namespace OpenRa.GameRules namespace OpenRA.GameRules
{ {
public class InfoLoader<T> : IEnumerable<KeyValuePair<string, T>> public class InfoLoader<T> : IEnumerable<KeyValuePair<string, T>>
{ {

View File

@@ -18,7 +18,7 @@
*/ */
#endregion #endregion
namespace OpenRa.GameRules namespace OpenRA.GameRules
{ {
public class ProjectileInfo public class ProjectileInfo
{ {

View File

@@ -21,10 +21,10 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using OpenRa.FileFormats; using OpenRA.FileFormats;
using OpenRa.GameRules; using OpenRA.GameRules;
namespace OpenRa namespace OpenRA
{ {
public static class Rules public static class Rules
{ {

View File

@@ -20,10 +20,10 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using OpenRa.FileFormats; using OpenRA.FileFormats;
using OpenRa.Traits; using OpenRA.Traits;
namespace OpenRa.GameRules namespace OpenRA.GameRules
{ {
public class TechTree public class TechTree
{ {

View File

@@ -18,7 +18,7 @@
*/ */
#endregion #endregion
namespace OpenRa.GameRules namespace OpenRA.GameRules
{ {
public class UserSettings public class UserSettings
{ {

View File

@@ -19,9 +19,9 @@
#endregion #endregion
using System.Collections.Generic; using System.Collections.Generic;
using OpenRa.FileFormats; using OpenRA.FileFormats;
namespace OpenRa.GameRules namespace OpenRA.GameRules
{ {
public class VoiceInfo public class VoiceInfo
{ {

View File

@@ -18,7 +18,7 @@
*/ */
#endregion #endregion
namespace OpenRa.GameRules namespace OpenRA.GameRules
{ {
public class WarheadInfo public class WarheadInfo
{ {

View File

@@ -18,7 +18,7 @@
*/ */
#endregion #endregion
namespace OpenRa.GameRules namespace OpenRA.GameRules
{ {
public class WeaponInfo public class WeaponInfo
{ {

View File

@@ -20,7 +20,7 @@
using System; using System;
namespace OpenRa.Graphics namespace OpenRA.Graphics
{ {
public class Animation public class Animation
{ {

View File

@@ -22,9 +22,9 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Xml; using System.Xml;
using OpenRa.FileFormats; using OpenRA.FileFormats;
namespace OpenRa.Graphics namespace OpenRA.Graphics
{ {
static class ChromeProvider static class ChromeProvider
{ {

View File

@@ -20,7 +20,7 @@
using System.Xml; using System.Xml;
namespace OpenRa.Graphics namespace OpenRA.Graphics
{ {
class CursorSequence class CursorSequence
{ {

View File

@@ -20,9 +20,9 @@
using System; using System;
using System.Linq; using System.Linq;
using OpenRa.FileFormats; using OpenRA.FileFormats;
namespace OpenRa.Graphics namespace OpenRA.Graphics
{ {
static class CursorSheetBuilder static class CursorSheetBuilder
{ {

View File

@@ -21,10 +21,10 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Drawing; using System.Drawing;
using OpenRa.FileFormats; using OpenRA.FileFormats;
using OpenRa.Traits; using OpenRA.Traits;
namespace OpenRa.Graphics namespace OpenRA.Graphics
{ {
class HardwarePalette : Sheet class HardwarePalette : Sheet
{ {

View File

@@ -19,9 +19,9 @@
#endregion #endregion
using System.Drawing; using System.Drawing;
using OpenRa.FileFormats.Graphics; using OpenRA.FileFormats.Graphics;
namespace OpenRa.Graphics namespace OpenRA.Graphics
{ {
class LineRenderer class LineRenderer
{ {

View File

@@ -22,7 +22,7 @@ using System.Drawing;
using System.IO; using System.IO;
using System.Xml; using System.Xml;
namespace OpenRa.Graphics namespace OpenRA.Graphics
{ {
class MappedImage class MappedImage
{ {

View File

@@ -22,10 +22,10 @@ using System;
using System.Drawing; using System.Drawing;
using System.Drawing.Imaging; using System.Drawing.Imaging;
using System.Linq; using System.Linq;
using OpenRa.FileFormats; using OpenRA.FileFormats;
using OpenRa.Traits; using OpenRA.Traits;
namespace OpenRa.Graphics namespace OpenRA.Graphics
{ {
class Minimap class Minimap
{ {

View File

@@ -19,9 +19,9 @@
#endregion #endregion
using System.Linq; using System.Linq;
using OpenRa.FileFormats; using OpenRA.FileFormats;
namespace OpenRa.Graphics namespace OpenRA.Graphics
{ {
class OverlayRenderer class OverlayRenderer
{ {

View File

@@ -23,12 +23,12 @@ using System.Drawing;
using System.Drawing.Text; using System.Drawing.Text;
using System.Reflection; using System.Reflection;
using System.Windows.Forms; using System.Windows.Forms;
using OpenRa.FileFormats; using OpenRA.FileFormats;
using OpenRa.FileFormats.Graphics; using OpenRA.FileFormats.Graphics;
using OpenRa.Support; using OpenRA.Support;
using System.IO; using System.IO;
namespace OpenRa.Graphics namespace OpenRA.Graphics
{ {
internal class Renderer internal class Renderer
{ {

View File

@@ -20,7 +20,7 @@
using System.Xml; using System.Xml;
namespace OpenRa.Graphics namespace OpenRA.Graphics
{ {
public class Sequence public class Sequence
{ {

View File

@@ -22,9 +22,9 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Xml; using System.Xml;
using OpenRa.FileFormats; using OpenRA.FileFormats;
namespace OpenRa.Graphics namespace OpenRA.Graphics
{ {
static class SequenceProvider static class SequenceProvider
{ {

View File

@@ -19,10 +19,10 @@
#endregion #endregion
using System.Drawing; using System.Drawing;
using OpenRa.FileFormats; using OpenRA.FileFormats;
using OpenRa.FileFormats.Graphics; using OpenRA.FileFormats.Graphics;
namespace OpenRa.Graphics namespace OpenRA.Graphics
{ {
public class Sheet public class Sheet
{ {

View File

@@ -20,7 +20,7 @@
using System.Drawing; using System.Drawing;
namespace OpenRa.Graphics namespace OpenRA.Graphics
{ {
class SheetBuilder class SheetBuilder
{ {

View File

@@ -20,7 +20,7 @@
using System.Drawing; using System.Drawing;
namespace OpenRa.Graphics namespace OpenRA.Graphics
{ {
public class Sprite public class Sprite
{ {

View File

@@ -1,11 +1,11 @@
using System; using System;
using System.Drawing; using System.Drawing;
using System.Linq; using System.Linq;
using OpenRa.FileFormats; using OpenRA.FileFormats;
using Tao.FreeType; using Tao.FreeType;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace OpenRa.Graphics namespace OpenRA.Graphics
{ {
class SpriteFont class SpriteFont
{ {

View File

@@ -18,9 +18,9 @@
*/ */
#endregion #endregion
using OpenRa.FileFormats.Graphics; using OpenRA.FileFormats.Graphics;
namespace OpenRa.Graphics namespace OpenRA.Graphics
{ {
class SpriteRenderer class SpriteRenderer
{ {

View File

@@ -19,9 +19,9 @@
#endregion #endregion
using System.Linq; using System.Linq;
using OpenRa.FileFormats; using OpenRA.FileFormats;
namespace OpenRa.Graphics namespace OpenRA.Graphics
{ {
static class SpriteSheetBuilder static class SpriteSheetBuilder
{ {

View File

@@ -19,10 +19,10 @@
#endregion #endregion
using System.Drawing; using System.Drawing;
using OpenRa.FileFormats; using OpenRA.FileFormats;
using OpenRa.FileFormats.Graphics; using OpenRA.FileFormats.Graphics;
namespace OpenRa.Graphics namespace OpenRA.Graphics
{ {
class TerrainRenderer class TerrainRenderer
{ {

View File

@@ -23,9 +23,9 @@ using System.Collections.Generic;
using System.Drawing; using System.Drawing;
using System.Drawing.Imaging; using System.Drawing.Imaging;
using System.IO; using System.IO;
using OpenRa.FileFormats.Graphics; using OpenRA.FileFormats.Graphics;
namespace OpenRa.Graphics namespace OpenRA.Graphics
{ {
static class Util static class Util
{ {

View File

@@ -20,10 +20,10 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using OpenRa.Network; using OpenRA.Network;
using OpenRa.Traits; using OpenRA.Traits;
namespace OpenRa.Graphics namespace OpenRA.Graphics
{ {
interface IHandleInput interface IHandleInput
{ {

View File

@@ -21,10 +21,10 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Drawing; using System.Drawing;
using System.Linq; using System.Linq;
using OpenRa.FileFormats; using OpenRA.FileFormats;
using OpenRa.Traits; using OpenRA.Traits;
namespace OpenRa.Graphics namespace OpenRA.Graphics
{ {
public class WorldRenderer public class WorldRenderer
{ {

Some files were not shown because too many files have changed in this diff Show More