mirror of
https://gitlab.com/skysthelimit.dev/selenite.git
synced 2025-06-16 10:32:08 -05:00
13 lines
215 B
JavaScript
13 lines
215 B
JavaScript
/**
|
|
* @file context.class.js
|
|
* @version 1.0.0
|
|
*/
|
|
|
|
export default class Context {
|
|
constructor(app, time, renderer) {
|
|
this.app = app;
|
|
this.time = time;
|
|
this.renderer = renderer;
|
|
}
|
|
}
|