mirror of
https://github.com/wyb10a10/cocos_creator_framework.git
synced 2026-05-19 07:33:18 +08:00
12 lines
253 B
TypeScript
12 lines
253 B
TypeScript
import { Component, _decorator } from "cc";
|
|
import { replicated } from "../../sync/SyncUtil";
|
|
|
|
const { ccclass, property } = _decorator;
|
|
|
|
@ccclass
|
|
export default class SyncCube extends Component {
|
|
onLoad() {
|
|
}
|
|
// update (dt) {}
|
|
}
|