git-svn-id: svn://svn.ijw.co.nz/svn/OpenRa@1327 993157c7-ee19-0410-b2c4-bb4e9862e678

This commit is contained in:
(no author)
2007-07-23 10:52:07 +00:00
parent 67b1f6e494
commit c8a81ffce4
8 changed files with 14 additions and 113 deletions

View File

@@ -14,6 +14,7 @@ namespace OpenRa.Game
public readonly TerrainRenderer terrain;
public readonly Viewport viewport;
public readonly PathFinder pathFinder;
public readonly Network network;
public Game( string mapName, Renderer renderer, int2 clientSize )
{
@@ -31,6 +32,8 @@ namespace OpenRa.Game
world.Add( new Tree( treeReference, treeCache, map ) );
pathFinder = new PathFinder( map, terrain.tileSet );
network = new Network();
}
}
}

View File

@@ -13,7 +13,6 @@ namespace OpenRa.Game
class MainWindow : Form
{
readonly Renderer renderer;
//readonly Map map;
Game game;
public readonly Sidebar sidebar;

View File

@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenRa.Game
{
class Network
{
}
}

View File

@@ -46,6 +46,7 @@
<Compile Include="Game.cs" />
<Compile Include="Harvester.cs" />
<Compile Include="Log.cs" />
<Compile Include="Network\Network.cs" />
<Compile Include="PathFinder.cs" />
<Compile Include="Sequence.cs" />
<Compile Include="ConstructionYard.cs" />