@pilotlab/lux-types
Version:
A luxurious user experience framework, developed by your friends at Pilot.
13 lines (8 loc) • 338 B
text/typescript
import { DataType, Attribute, AttributeCollection } from '@pilotlab/lux-attributes';
export class Quaternion extends Attribute<AttributeCollection> {
constructor() {
super('Quaternion', null, DataType.COLLECTION, null, true);
this.dataType = DataType.COLLECTION;
}
} // End of class
export default Quaternion;