Added all Net classes as dummy

This commit is contained in:
SND\AstrorEnales_cp 2011-11-16 15:00:54 +00:00
parent e8cfec47c4
commit 6f602c3597
16 changed files with 135 additions and 0 deletions

View File

@ -366,15 +366,30 @@
<Compile Include="Media\MediaSourceType.cs" />
<Compile Include="Media\MediaState.cs" />
<Compile Include="Media\VideoSoundtrackType.cs" />
<Compile Include="Net\AvailableNetworkSession.cs" />
<Compile Include="Net\AvailableNetworkSessionCollection.cs" />
<Compile Include="Net\GameEndedEventArgs.cs" />
<Compile Include="Net\GamerJoinedEventArgs.cs" />
<Compile Include="Net\GamerLeftEventArgs.cs" />
<Compile Include="Net\GameStartedEventArgs.cs" />
<Compile Include="Net\HostChangedEventArgs.cs" />
<Compile Include="Net\LocalNetworkGamer.cs" />
<Compile Include="Net\NetworkException.cs" />
<Compile Include="Net\NetworkGamer.cs" />
<Compile Include="Net\NetworkMachine.cs" />
<Compile Include="Net\NetworkSession.cs" />
<Compile Include="Net\NetworkSessionEndedEventArgs.cs" />
<Compile Include="Net\NetworkSessionEndReason.cs" />
<Compile Include="Net\NetworkSessionJoinError.cs" />
<Compile Include="Net\NetworkSessionJoinException.cs" />
<Compile Include="Net\NetworkSessionProperties.cs" />
<Compile Include="Net\NetworkSessionState.cs" />
<Compile Include="Net\NetworkSessionType.cs" />
<Compile Include="Net\PacketReader.cs" />
<Compile Include="Net\PacketWriter.cs" />
<Compile Include="Net\QualityOfService.cs" />
<Compile Include="Net\SendDataOptions.cs" />
<Compile Include="Net\WriteLeaderboardsEventArgs.cs" />
<Compile Include="NonXNA\InputSystem\IKeyboard.cs" />
<Compile Include="NonXNA\InputSystem\IMotionSensingDevice.cs" />
<Compile Include="NonXNA\InputSystem\IMouse.cs" />

View File

@ -0,0 +1,8 @@
using System;
namespace ANX.Framework.Net
{
public class AvailableNetworkSession
{
}
}

View File

@ -0,0 +1,8 @@
using System;
namespace ANX.Framework.Net
{
public class AvailableNetworkSessionCollection
{
}
}

View File

@ -0,0 +1,8 @@
using System;
namespace ANX.Framework.Net
{
public class GamerJoinedEventArgs : EventArgs
{
}
}

View File

@ -0,0 +1,8 @@
using System;
namespace ANX.Framework.Net
{
public class GamerLeftEventArgs : EventArgs
{
}
}

View File

@ -0,0 +1,8 @@
using System;
namespace ANX.Framework.Net
{
public class HostChangedEventArgs : EventArgs
{
}
}

View File

@ -0,0 +1,8 @@
using System;
namespace ANX.Framework.Net
{
public class LocalNetworkGamer
{
}
}

View File

@ -0,0 +1,8 @@
using System;
namespace ANX.Framework.Net
{
public class NetworkGamer
{
}
}

View File

@ -0,0 +1,8 @@
using System;
namespace ANX.Framework.Net
{
public class NetworkMachine
{
}
}

View File

@ -0,0 +1,8 @@
using System;
namespace ANX.Framework.Net
{
public class NetworkSession
{
}
}

View File

@ -0,0 +1,8 @@
using System;
namespace ANX.Framework.Net
{
public class NetworkSessionJoinException : Exception
{
}
}

View File

@ -0,0 +1,8 @@
using System;
namespace ANX.Framework.Net
{
public class NetworkSessionProperties
{
}
}

View File

@ -0,0 +1,8 @@
using System;
namespace ANX.Framework.Net
{
public class PacketReader
{
}
}

View File

@ -0,0 +1,8 @@
using System;
namespace ANX.Framework.Net
{
public class PacketWriter
{
}
}

View File

@ -0,0 +1,8 @@
using System;
namespace ANX.Framework.Net
{
public class QualityOfService
{
}
}

View File

@ -0,0 +1,8 @@
using System;
namespace ANX.Framework.Net
{
public class WriteLeaderboardsEventArgs : EventArgs
{
}
}