9 lines
163 B
JavaScript
9 lines
163 B
JavaScript
import Ecs from '@/ecs/ecs.js';
|
|
import Types from '@/ecs-components/index.js';
|
|
|
|
class EngineEcs extends Ecs {
|
|
static Types = Types;
|
|
}
|
|
|
|
export default EngineEcs;
|