mirror of
https://github.com/wyb10a10/cocos_creator_framework.git
synced 2026-07-02 01:34:37 +08:00
14 lines
296 B
TypeScript
14 lines
296 B
TypeScript
import { Component, Label, _decorator, view, director, Node, RichText } from "cc";
|
|
import { replicated } from "../../sync/SyncUtil";
|
|
|
|
const { ccclass, property } = _decorator;
|
|
|
|
@ccclass
|
|
export default class SyncCube extends Component {
|
|
|
|
onLoad() {
|
|
}
|
|
|
|
// update (dt) {}
|
|
}
|