Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
TKazer committed Mar 23, 2023
1 parent 97a59ab commit 6fed502
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
* [(3) 结算数据](#Reader_DataInResult)
* [(4) 谱面数据](#Reader_Map)
* [(5) 玩家数据](#Reader_LocalPlayer)
* [(5) 数据算法](#Algorithm)
* [(6) MP数据](#Reader_MpPlayerData)
* [(7) 数据算法](#Algorithm)
- [协议](#LICENSE)

# Malody-Reader
Expand Down Expand Up @@ -196,6 +197,24 @@ It's easy to use this library to develop plugins.
> };
> ```
## Reader_MpPlayerData
> 读取Mp玩家数据。
>
> ```c++
> /// <summary>
> /// MP玩家结算数据
> /// </summary>
> class MPData
> {
> public:
> OnlinePlayer Player;
> ResultData Data;
> };
>
> std::vector<MPData> MPDatas;
> ```
## Algorithm
| Name | Using | |
Expand Down

0 comments on commit 6fed502

Please sign in to comment.