import { Component } from '@serpentity/serpentity';
/*
* Angle component, stores the value of an angle
* Public members:
* -angle <Number> // the angle of the component
*/
export default class Angle extends Component {
constructor(config) {
super(config)
this.angle = this.angle || 0;
}
};