task-svr/src/taskingame/GameBattle.ts
2024-05-11 10:35:33 +08:00

11 lines
226 B
TypeScript

import { ITask } from './base/ITask'
export default class GameBattle extends ITask {
static desc = 'game battle'
static key = 'battleTimes'
static show: boolean = true
async execute(data: any) {
return true
}
}