33 lines
774 B
TypeScript
33 lines
774 B
TypeScript
|
/************************************************************************************
|
||
|
|
||
|
* FileName : ChatAndFriend.ts
|
||
|
* Description : 聊天和好友通用按钮
|
||
|
* Version : v1.0.0
|
||
|
* CreateTime : 2024-10-24 11:21:36
|
||
|
* Author :
|
||
|
* Copyright (c) since 2024
|
||
|
* ==============================================================
|
||
|
* Method Description:
|
||
|
*
|
||
|
* ==============================================================
|
||
|
************************************************************************************/
|
||
|
import { _decorator, Component, Node } from 'cc';
|
||
|
const { ccclass, property } = _decorator;
|
||
|
|
||
|
@ccclass('ChatAndFriend')
|
||
|
export class ChatAndFriend extends Component {
|
||
|
start() {
|
||
|
|
||
|
}
|
||
|
|
||
|
clickChat() : void{
|
||
|
|
||
|
}
|
||
|
|
||
|
clickFriend() : void{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|