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.js
18 lines
(17 loc)
•
322 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
World
=
void
0
;
class
World
{
constructor
(
options = {}
) {
this
.
options
= options; }
begin
(
) { }
end
(
) { }
render
(
display
) { }
handleInput
(
inputType, inputData
) { } }
exports
.
World
=
World
;