UNPKG
hzengine-core
Version:
latest (0.1.3)
0.1.3
0.1.2-dev
An Visual Novel Engine for Zepp OS
hzengine-core
/
src
/
debug
/
index.ts
11 lines
(8 loc)
•
208 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
HZEngineCore
}
from
"../index.js"
;
export
class
Debug
{
constructor
(
private
_core
:
HZEngineCore
) { }
log
(
...
args
:
any
[]
) {
console
.
log
(
"[HZEngine]"
, ...args); } }