@@ -1,4 +1,11 @@
-import { Event } from './Face3';
+/**
+ * Event object.
+ */
+export interface Event {
+ type: string;
+ target?: any;
+ [attachment: string]: any;
+}
/**
* JavaScript events for custom objects
@@ -1,12 +1,6 @@
import { Vector3 } from './../math/Vector3';
import { Color } from './../math/Color';
-export interface Event {
- type: string;
- target?: any;
- [attachment: string]: any;
-}
-
* Triangle face.
*