mirror of
https://github.com/rafi1212122/BLHX.Server.git
synced 2026-02-06 10:06:48 +01:00
More stubs for technology stuff
This commit is contained in:
@@ -140,6 +140,9 @@ namespace BLHX.Server.Game
|
|||||||
this.NotifyStatisticsInit();
|
this.NotifyStatisticsInit();
|
||||||
this.NotifyShipData();
|
this.NotifyShipData();
|
||||||
this.NotifyShipSkinData();
|
this.NotifyShipSkinData();
|
||||||
|
this.NotifyTechnologyData();
|
||||||
|
this.NotifyBlueprintData();
|
||||||
|
this.NotifyTechSetLists();
|
||||||
this.NotifyFleetData();
|
this.NotifyFleetData();
|
||||||
this.NotifyShopMonthData();
|
this.NotifyShopMonthData();
|
||||||
this.NotifyChapterData();
|
this.NotifyChapterData();
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ namespace BLHX.Server.Game.Handlers
|
|||||||
connection.Send(new Sc26151());
|
connection.Send(new Sc26151());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static class P26ConnectionNotifyExtensions
|
static class P26ConnectionNotifyExtensions
|
||||||
{
|
{
|
||||||
public static void NotifyGameRoom(this Connection connection)
|
public static void NotifyGameRoom(this Connection connection)
|
||||||
|
|||||||
17
BLHX.Server.Game/Handlers/P63.cs
Normal file
17
BLHX.Server.Game/Handlers/P63.cs
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
using BLHX.Server.Common.Proto.p63;
|
||||||
|
|
||||||
|
namespace BLHX.Server.Game.Handlers
|
||||||
|
{
|
||||||
|
static class P63ConnectionNotifyExtensions
|
||||||
|
{
|
||||||
|
public static void NotifyTechnologyData(this Connection connection)
|
||||||
|
{
|
||||||
|
connection.Send(new Sc63000());
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void NotifyBlueprintData(this Connection connection)
|
||||||
|
{
|
||||||
|
connection.Send(new Sc63100());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
12
BLHX.Server.Game/Handlers/P64.cs
Normal file
12
BLHX.Server.Game/Handlers/P64.cs
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
using BLHX.Server.Common.Proto.p64;
|
||||||
|
|
||||||
|
namespace BLHX.Server.Game.Handlers
|
||||||
|
{
|
||||||
|
static class P64ConnectionNotifyExtensions
|
||||||
|
{
|
||||||
|
public static void NotifyTechSetLists(this Connection connection)
|
||||||
|
{
|
||||||
|
connection.Send(new Sc64000());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user