blob: f28cc20d242436d0d38775b2636cddaa696d113b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { Component } from '@serpentity/serpentity';
export default class Up extends Component {
constructor(config) {
super(config);
this.x = this.x || 0;
this.y = this.y || 1;
this.z = this.z || 0;
}
};
|