mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-09-11 19:21:36 -04:00
8551f5e0e4
* Mods: Support Luau mods * Enable `integer` type & use it * Link to headers in modding.md * Update link to webgpu.h
9 lines
193 B
Lua
9 lines
193 B
Lua
local log = require("dusklight.log")
|
|
local host = require("dusklight.host")
|
|
|
|
log.info("My Script Mod initialized")
|
|
|
|
host.on_shutdown(function()
|
|
log.info("My Script Mod shutting down")
|
|
end)
|