28 lines
606 B
JavaScript
28 lines
606 B
JavaScript
prosperon.win = prosperon.engine_start({
|
|
title:`Prosperon [${prosperon.version}-${prosperon.revision}]`,
|
|
width: 1280,
|
|
height: 720,
|
|
high_dpi:0,
|
|
alpha:1,
|
|
fullscreen:0,
|
|
sample_count:1,
|
|
enable_clipboard:true,
|
|
enable_dragndrop: true,
|
|
max_dropped_files: 1,
|
|
swap_interval: 1,
|
|
name: "Prosperon",
|
|
version:prosperon.version + "-" + prosperon.revision,
|
|
identifier: "world.pockle.prosperon",
|
|
creator: "Pockle World LLC",
|
|
copyright: "Copyright Pockle World 2025",
|
|
type: "game",
|
|
url: "https://prosperon.dev"
|
|
})
|
|
|
|
function loop() {
|
|
$_.delay(loop, 1/60)
|
|
}
|
|
loop()
|
|
|
|
$_.delay($_.stop, 3)
|