aboutsummaryrefslogtreecommitdiff
path: root/components/angle/index.js
blob: 1bd1db2591a85c82bf059c72da36774d9864e88f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
  }
};