1
0
Fork 0

pokken: add_profile_points stub

This commit is contained in:
Hay1tsme 2023-04-12 02:39:56 -04:00
parent bd356af272
commit 71c43a4a57
1 changed files with 3 additions and 0 deletions

View File

@ -137,6 +137,9 @@ class PokkenProfileData(BaseData):
def update_profile_tutorial_flags(self, user_id: int, tutorial_flags: Dict) -> None:
pass
def add_profile_points(self, user_id: int, rank_pts: int, money: int, score_pts: int) -> None:
pass
def get_profile(self, user_id: int) -> Optional[Row]:
sql = profile.select(profile.c.user == user_id)
result = self.execute(sql)