chore: add IOtherDialogueInfo
All checks were successful
Build / build (22) (push) Successful in 1m9s
Build Docker image / docker (push) Successful in 33s
Build / build (18) (push) Successful in 1m25s
Build / build (20) (push) Successful in 39s

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[];
ResetBooleans: string[];
Data: ICompletedDialogue;
OtherDialogueInfos: string[]; // unsure
OtherDialogueInfos: IOtherDialogueInfo[]; // unsure
}
interface IOtherDialogueInfo {
Dialogue: string;
Tag: string;
Value: number;
}