XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

XFESpaceNinjaServer

A simple server for a small space ninja game

公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/XFESpaceNinjaServer

chore: add IOtherDialogueInfo

b8e3be50
Sainan <sainan@calamity.inc>
提交于

代码差异

1 个文件 +7 -1
Modified src/controllers/api/saveDialogueController.ts +7 -1
@@ -81,5 +81,11 @@ interface SaveCompletedDialogueRequest {
81 81 Booleans: string[];
82 82 ResetBooleans: string[];
83 83 Data: ICompletedDialogue;
84 OtherDialogueInfos: string[]; // unsure
84 OtherDialogueInfos: IOtherDialogueInfo[]; // unsure
85 }
86
87 interface IOtherDialogueInfo {
88 Dialogue: string;
89 Tag: string;
90 Value: number;
85 91 }