move util into global scope

This commit is contained in:
2025-02-14 22:01:50 +03:00
parent e19943e9f2
commit a532325cd2
4 changed files with 2 additions and 6 deletions

View File

@ -3,8 +3,6 @@ local Signal = {
_connections = {}
}
local util = require "util"
Signal.__index = Signal
---Connects f to this signal. When the signal is emmitted, this function will be called.