军团数据库表
This commit is contained in:
20
game-server/app/servers/battle/handler/guildHandler.ts
Normal file
20
game-server/app/servers/battle/handler/guildHandler.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
import {Application, BackendSession, pinus} from 'pinus';
|
||||
|
||||
export default function(app: Application) {
|
||||
return new GuildHandler(app);
|
||||
}
|
||||
|
||||
export class GuildHandler {
|
||||
constructor(private app: Application) {
|
||||
}
|
||||
|
||||
//TODO创建军团
|
||||
async createGuild() {
|
||||
|
||||
}
|
||||
|
||||
//TODO 获取军团列表
|
||||
async getGuildList() {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user