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
/
GlyphOptions.d.ts
10 lines
(9 loc)
•
257 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
interface
GlyphOptions
{
character
?:
string
|
undefined
;
fgColor
?:
string
|
undefined
;
bgColor
?:
string
|
undefined
;
walkable
?:
boolean
|
false
;
diggable
?:
boolean
|
false
;
description
?:
string
|
''
;
name
?:
string
|
''
; }