UNPKG
@erikyuzwa/rogue-punk
Version:
latest (0.3.6)
0.3.6
0.3.5
0.3.0
0.2.0
a JavaScript library to help you build your roguelike adventures
@erikyuzwa/rogue-punk
/
dist
/
World.d.ts
10 lines
(9 loc)
•
247 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
*
as
ROT
from
'rot-js'
;
export
declare
class
World
{
private
options;
constructor
(
options
?: {}
);
begin
():
void
;
end
():
void
;
render
(
display
:
ROT
.
Display
):
void
;
handleInput
(
inputType
:
string
,
inputData
: {}):
void
; }