mirror of
https://github.com/thegatesbrowser/thegates.git
synced 2025-08-26 17:17:24 -04:00
open link events
This commit is contained in:
parent
1b80249b2b
commit
fb4b6e8d45
4 changed files with 33 additions and 5 deletions
|
@ -112,3 +112,11 @@ func leave_afk(time_spent: float) -> Dictionary:
|
|||
var event = base("leave_afk")
|
||||
event.time_spent = time_spent
|
||||
return event
|
||||
|
||||
|
||||
# LINK
|
||||
|
||||
func open_link(url: String) -> Dictionary:
|
||||
var event = base("open_link")
|
||||
event.url = url
|
||||
return event
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue