mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 19:34:47 +00:00
8 lines
131 B
TypeScript
8 lines
131 B
TypeScript
import GObject from "../GObject";
|
|
|
|
//子弹基类
|
|
export default class GButtleBase<T> extends GObject<T>{
|
|
setData(data:T){}
|
|
}
|
|
|