chore: add IOtherDialogueInfo

This commit is contained in:
Sainan 2025-03-22 21:11:16 +01:00
parent 57786bfffb
commit b8e3be5018

View File

@ -81,5 +81,11 @@ interface SaveCompletedDialogueRequest {
Booleans: string[]; Booleans: string[];
ResetBooleans: string[]; ResetBooleans: string[];
Data: ICompletedDialogue; Data: ICompletedDialogue;
OtherDialogueInfos: string[]; // unsure OtherDialogueInfos: IOtherDialogueInfo[]; // unsure
}
interface IOtherDialogueInfo {
Dialogue: string;
Tag: string;
Value: number;
} }