mirror of
https://github.com/WhitestormJS/whs.js.git
synced 2026-01-18 16:03:24 +00:00
16 lines
242 B
JavaScript
16 lines
242 B
JavaScript
// NetworkIdentity Module
|
|
|
|
export class NetworkIdentity {
|
|
contructor(params) {
|
|
this.params = Object.assign({
|
|
geometry: true,
|
|
material: true
|
|
}, params);
|
|
}
|
|
|
|
integrate(self) {
|
|
const params = self.params;
|
|
}
|
|
|
|
}
|