UNPKG
rgui
Version:
latest (0.1.0)
0.1.0
RPG Maker MV GUI framework.
github.com/molingyu/rguijs
molingyu/rguijs
rgui
/
src
/
box
/
index.js
11 lines
(9 loc)
•
157 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * 包围盒模块。 * * @namespace RGUI.Box */
const
Box
= {};
Box
.Rect =
require
(
'./rect'
);
Box
.Round =
require
(
'./round'
); module.exports =
Box
;