init
This commit is contained in:
13
game_server/resource/configdb/avatar_skill_tree_config.py
Normal file
13
game_server/resource/configdb/avatar_skill_tree_config.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from dataclasses import dataclass
|
||||
from game_server.resource.base_resource import BaseResource
|
||||
from game_server.resource.decorators import GameResource, LoadPriority
|
||||
|
||||
@dataclass
|
||||
@GameResource("resources/ExcelOutput/AvatarSkillTreeConfig.json", load_priority=LoadPriority.HIGH)
|
||||
class AvatarSkillTreeConfig(BaseResource):
|
||||
AvatarID: int
|
||||
MaxLevel: int
|
||||
PointID: int
|
||||
|
||||
def get_index(self) -> str:
|
||||
return str(self.AvatarID)
|
||||
Reference in New Issue
Block a user