UNPKG
@pixi-spine/runtime-3.8
Version:
latest (4.0.6)
4.0.6
4.0.5
4.0.3
4.0.2
4.0.1
4.0.0
3.1.2
3.1.1
3.1.0
3.0.16
3.0.15
3.0.14
3.0.13
3.0.12
3.0.11
3.0.10
3.0.9
3.0.8
3.0.7
3.0.6
3.0.5
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
Pixi runtime for spine 3.8 models
github.com/pixijs/pixi-spine/
pixijs/pixi-spine
@pixi-spine/runtime-3.8
/
lib
/
core
/
Event.js
14 lines
(11 loc)
•
234 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict'
;
class
Event
{
constructor
(
time, data
) {
if
(data ==
null
)
throw
new
Error
(
"data cannot be null."
);
this
.
time
= time;
this
.
data
= data; } }
exports
.
Event
=
Event
;
//# sourceMappingURL=Event.js.map