mirror of
https://github.com/rafi1212122/BLHX.Server.git
synced 2025-12-12 14:34:39 +01:00
24 lines
511 B
C#
24 lines
511 B
C#
using BLHX.Server.Common.Proto.p22;
|
|
|
|
namespace BLHX.Server.Game.Handlers
|
|
{
|
|
internal static class P22
|
|
{
|
|
}
|
|
|
|
static class P22ConnectionNotifyExtensions
|
|
{
|
|
public static void NotifyNavalAcademy(this Connection connection)
|
|
{
|
|
connection.Send(new Sc22001()
|
|
{
|
|
OilWellLevel = 1,
|
|
GoldWellLevel = 1,
|
|
ClassLv = 1,
|
|
Class = new(),
|
|
SkillClassNum = 2
|
|
});
|
|
}
|
|
}
|
|
}
|