From 015e693225ee329adb8241b5d95d275f2c1710bc Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Wed, 3 Jan 2024 16:45:51 +0800 Subject: [PATCH] 1 --- server/gameserver/mt/BattleBasicAttribute.cc | 15 +++++++++++++++ server/gameserver/mt/BattleBasicAttribute.h | 4 ++++ 2 files changed, 19 insertions(+) diff --git a/server/gameserver/mt/BattleBasicAttribute.cc b/server/gameserver/mt/BattleBasicAttribute.cc index a59e69d4..45ed5242 100644 --- a/server/gameserver/mt/BattleBasicAttribute.cc +++ b/server/gameserver/mt/BattleBasicAttribute.cc @@ -3,3 +3,18 @@ #include "mt/BattleBasicAttribute.h" IMPL_TABLE(mt::BattleBasicAttribute) + +namespace mt +{ + + void BattleBasicAttribute::Init1() + { + + } + + void BattleBasicAttribute::Init2() + { + + } + +} diff --git a/server/gameserver/mt/BattleBasicAttribute.h b/server/gameserver/mt/BattleBasicAttribute.h index 3dc94fe2..e0367abb 100644 --- a/server/gameserver/mt/BattleBasicAttribute.h +++ b/server/gameserver/mt/BattleBasicAttribute.h @@ -10,6 +10,10 @@ namespace mt "battleBasicAttribute@battleBasicAttribute.json", "id") public: + + void Init1(); + void Init2(); + }; }