mirror of
https://github.com/rafi1212122/BLHX.Server.git
synced 2025-12-12 14:34:39 +01:00
More stubs for technology stuff
This commit is contained in:
@@ -140,6 +140,9 @@ namespace BLHX.Server.Game
|
||||
this.NotifyStatisticsInit();
|
||||
this.NotifyShipData();
|
||||
this.NotifyShipSkinData();
|
||||
this.NotifyTechnologyData();
|
||||
this.NotifyBlueprintData();
|
||||
this.NotifyTechSetLists();
|
||||
this.NotifyFleetData();
|
||||
this.NotifyShopMonthData();
|
||||
this.NotifyChapterData();
|
||||
|
||||
@@ -17,6 +17,7 @@ namespace BLHX.Server.Game.Handlers
|
||||
connection.Send(new Sc26151());
|
||||
}
|
||||
}
|
||||
|
||||
static class P26ConnectionNotifyExtensions
|
||||
{
|
||||
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