avg-core-ts
Version:
Develop Adventure Game (or ADV, Visual Novel, Galgame, etc.) on your own!
28 lines (24 loc) • 565 B
JavaScript
/**
* @file Main export of the AVG.js library
* @author MicroMatrix <yangpan.1985@bytedance.com>
* @copyright 2012-2020 bytedance
* @link git@code.byted.org:yangpan.1985/avg.git
*/
/**
* @namespace AVG
*/
import * as components from 'components';
import * as ui from 'components/ui';
import * as plugins from 'plugins';
import React, { Component } from 'react';
import core from 'core/core';
import findPixiNode from './components/findPixiNode';
export {
React,
Component,
core,
components,
ui,
plugins,
findPixiNode
};