源战役
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 rivejä
944 B

1 kuukausi sitten
  1. %% ---------------------------------------------------------------------------
  2. %% @doc 角色头像头文件.
  3. %% @author zhaoyu
  4. %% @since 2019-11-20
  5. %% ---------------------------------------------------------------------------
  6. -ifndef(PROFILE_PHOTO_HRL).
  7. -define(PROFILE_PHOTO_HRL, ok).
  8. %% 角色头像头文件配置
  9. -record(profile_photo, {
  10. photo_id = 0 %% 头像Id
  11. ,name = <<>> %% 头像名称
  12. ,career = [] %% 职业:0不限职业,1男战士,2女战士,3男法师,4女法师
  13. ,cost = 0 %% 激活消耗道具
  14. ,attr_list = [] %% 头像属性
  15. ,turn = 0 %% 转职Id
  16. ,open_day = 0 %% 开启天数
  17. ,open_time = "" %% 开启时间
  18. }
  19. ).
  20. %% 角色头像数据
  21. -record(profile_photo_info, {
  22. photo_list = [] %% 角色已激活头像列表
  23. ,pp_attr = [] %% 头像属性
  24. }
  25. ).
  26. -endif. %% PROFILE_PHOTO_HRL