11 lines
226 B
TypeScript
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
|
|
}
|
|
}
|