UNPKG
raingame
Version:
latest (1.0.0)
1.0.0
2D game framework
github.com/awayel/Rain
awayel/Rain
raingame
/
src
/
interfaces
/
MoveOptions.ts
11 lines
(10 loc)
•
237 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
Position
from
'../Position'
;
interface
moveOptions {
type
:
string
;
position
:
Position
,
transitionMode
?:
string
;
distance
?:
number
;
angle
?:
number
;
duration
?:
number
; }
export
default
moveOptions;