Files
core/hwe/ts/APIPath.ts
T
2021-12-28 04:28:26 +09:00

34 lines
747 B
TypeScript

import { APIPathGen } from "./util/APIPathGen";
const apiRealPath = {
Command: {
GetReservedCommand: '',
PushCommand: '',
RepeatCommand: '',
ReserveCommand: '',
},
General: {
Join: '',
},
InheritAction: {
BuyHiddenBuff: '',
BuyRandomUnique: '',
BuySpecificUnique: '',
ResetSpecialWar: '',
ResetTurnTime: '',
SetNextSpecialWar: '',
},
Misc: { UploadImage: '' },
NationCommand: {
GetReservedCommand: '',
PushCommand: '',
RepeatCommand: '',
ReserveCommand: '',
},
Nation: {
SetNotice: '',
SetScoutMsg: '',
},
} as const;
export const APIPath = APIPathGen(apiRealPath);