diff options
| author | Ben Beltran <ben@nsovocal.com> | 2020-03-09 15:02:35 -0500 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2020-03-09 15:02:35 -0500 |
| commit | 7741a3cc37662ab2ff9606bdaffc0317b79a8dd9 (patch) | |
| tree | 1bee45d2821debe3c6e7e2ab40250218d251097a /lib/components/angle.js | |
| parent | bb8d5ef47baf7ad16a1bc58526f81ce332b090d6 (diff) | |
Diffstat (limited to 'lib/components/angle.js')
| -rw-r--r-- | lib/components/angle.js | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/components/angle.js b/lib/components/angle.js deleted file mode 100644 index 65feeab..0000000 --- a/lib/components/angle.js +++ /dev/null @@ -1,25 +0,0 @@ -import { Component } from '@serpentity/serpentity'; - -/** - * Component that stores an angle - * - * @extends {external:Serpentity.Component} - * @class AngleComponent - * @param {object} config a configuration object to extend. - */ -export default class AngleComponent extends Component { - constructor(config) { - - super(config); - - /** - * The properthy that holds the angle - * - * @property {number} angle - * @instance - * @memberof AngleComponent - */ - this.angle = this.angle || 0; - } -}; - |