mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-13 19:04:54 +01:00
10 lines
113 B
GDScript3
10 lines
113 B
GDScript3
|
extends Node
|
||
|
class_name ShellCommand
|
||
|
|
||
|
signal done
|
||
|
|
||
|
var command
|
||
|
var output
|
||
|
var exit_code
|
||
|
var crash_on_fail = true
|