UNPKG
snow-falls
Version:
latest (1.2.0)
1.2.0
1.0.1
1.0.0
The snow falls and the wind blows
github.com/cct124/snow-falls
cct124/snow-falls
snow-falls
/
src
/
index.ts
20 lines
(18 loc)
•
325 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import
Snow
from
"./script/Snow"
;
import
Wind
from
"./script/physics/Wind"
;
import
Borders
from
"./script/physics/Borders"
;
import
EleBorder
from
"./script/plugin/EleBorder"
;
export
default
{
/** * 雪花动画类 */
Snow
,
/** * 功能扩展模块 */
Mod
: {
Wind
,
Borders
,
EleBorder
, }, };