14 lines
191 B
JavaScript
14 lines
191 B
JavaScript
import LiveEntity from "../../ts/core/LiveEntity";
|
|
|
|
cc.Class({
|
|
extends: LiveEntity,
|
|
properties: {
|
|
},
|
|
|
|
onLoad() {
|
|
this._super();
|
|
this.obj_type = 1;
|
|
},
|
|
|
|
});
|