8 lines
131 B
TypeScript
Raw Normal View History

2023-10-27 19:17:47 +08:00
import GObject from "../GObject";
//子弹基类
export default class GButtleBase<T> extends GObject<T>{
setData(data:T){}
}