mirror of
https://github.com/thegatesbrowser/thegates.git
synced 2025-08-27 02:17:36 -04:00
add license, move folders
This commit is contained in:
parent
185cc74060
commit
271c4a46a1
132 changed files with 21 additions and 0 deletions
13
app/scripts/resources/command_events.gd
Normal file
13
app/scripts/resources/command_events.gd
Normal file
|
@ -0,0 +1,13 @@
|
|||
extends Resource
|
||||
class_name CommandEvents
|
||||
|
||||
signal send_filehandle(filehandle_path: String)
|
||||
signal set_mouse_mode(mode: int)
|
||||
|
||||
|
||||
func send_filehandle_emit(filehandle_path: String) -> void:
|
||||
send_filehandle.emit(filehandle_path)
|
||||
|
||||
|
||||
func set_mouse_mode_emit(mode: int) -> void:
|
||||
set_mouse_mode.emit(mode)
|
Loading…
Add table
Add a link
Reference in a new issue