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