mirror of
https://github.com/KuoKuo666/CocosCreator-Bubble.git
synced 2026-05-06 22:00:48 +08:00
14 lines
283 B
TypeScript
14 lines
283 B
TypeScript
/** 泡泡对象 */
|
|
export interface bubbleData {
|
|
node: cc.Node,
|
|
color: number,
|
|
isVisited: boolean,
|
|
isLinked: boolean
|
|
}
|
|
|
|
/** 导出事件名称枚举 */
|
|
export enum EVENT {
|
|
/** 触摸结束后,射击事件,附带角度参数 */
|
|
TOUCHEND_SHOOT = 'shoot'
|
|
}
|