mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-10-13 02:26:07 +00:00
update
This commit is contained in:
29
JisolGameCocos/assets/script/battle/skill/GSkillAngerBase.ts
Normal file
29
JisolGameCocos/assets/script/battle/skill/GSkillAngerBase.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
import { TableGRoleSkill } from "../../../resources/config/ts/TableGRoleSkill";
|
||||
import GRoleBase from "../base/role/GRoleBase";
|
||||
import { GSkillBase, GSkillState } from "./GSkill";
|
||||
|
||||
|
||||
//怒气冷却
|
||||
export default abstract class GSkillAngerBase implements GSkillBase {
|
||||
|
||||
bind(role: GRoleBase<{}>, info: TableGRoleSkill): GSkillBase {
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
isRelease(): boolean {
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
release(): boolean {
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
state(): GSkillState {
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
onUpdate(dt: number) {
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
getProgress(): number {
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user