git-svn-id: svn://svn.ijw.co.nz/svn/OpenRa@1327 993157c7-ee19-0410-b2c4-bb4e9862e678
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -13,7 +13,6 @@ namespace OpenRa.Game
|
||||
class MainWindow : Form
|
||||
{
|
||||
readonly Renderer renderer;
|
||||
//readonly Map map;
|
||||
|
||||
Game game;
|
||||
public readonly Sidebar sidebar;
|
||||
|
||||
10
OpenRa.Game/Network/Network.cs
Normal file
10
OpenRa.Game/Network/Network.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace OpenRa.Game
|
||||
{
|
||||
class Network
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -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" />
|
||||
|
||||
Reference in New Issue
Block a user