Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
EmosewaMC committed Jul 6, 2024
1 parent d141f92 commit 6818a17
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions dDatabase/GameDatabase/TestSQL/TestSQLDatabase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -300,3 +300,7 @@ void TestSQLDatabase::RemoveBehavior(const int32_t behaviorId) {

}

void TestSQLDatabase::UpdateAccountGmLevel(const uint32_t accountId, const eGameMasterLevel gmLevel) {

}

7 changes: 4 additions & 3 deletions dDatabase/GameDatabase/TestSQL/TestSQLDatabase.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,10 @@ class TestSQLDatabase : public GameDatabase {
std::vector<IIgnoreList::Info> GetIgnoreList(const uint32_t playerId) override;
void InsertRewardCode(const uint32_t account_id, const uint32_t reward_code) override;
std::vector<uint32_t> GetRewardCodesByAccountID(const uint32_t account_id) override;
virtual void AddBehavior(const IBehaviors::Info& info);
virtual std::string GetBehavior(const int32_t behaviorId);
virtual void RemoveBehavior(const int32_t behaviorId);
void AddBehavior(const IBehaviors::Info& info) override;
std::string GetBehavior(const int32_t behaviorId) override;
void RemoveBehavior(const int32_t behaviorId) override;
void UpdateAccountGmLevel(const uint32_t accountId, const eGameMasterLevel gmLevel) override;
};

#endif //!TESTSQLDATABASE_H

0 comments on commit 6818a17

Please sign in to comment.