mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-10 04:40:25 +01:00
b5d3c6c9a5
Copied from Gut repo godot_4 branch commit: ba19a4c1b6f88160641a67a39729144046c6391f
31 lines
979 B
Text
31 lines
979 B
Text
# ##############################################################################
|
|
# Gut Doubled Script
|
|
# ##############################################################################
|
|
{extends}
|
|
|
|
{constants}
|
|
|
|
{properties}
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# GUT stuff
|
|
# ------------------------------------------------------------------------------
|
|
var __gutdbl_values = {
|
|
double = self,
|
|
thepath = '{path}',
|
|
subpath = '{subpath}',
|
|
stubber = {stubber_id},
|
|
spy = {spy_id},
|
|
gut = {gut_id},
|
|
from_singleton = '{singleton_name}',
|
|
is_partial = {is_partial},
|
|
}
|
|
var __gutdbl = load('res://addons/gut/double_tools.gd').new(__gutdbl_values)
|
|
|
|
# Here so other things can check for a method to know if this is a double.
|
|
func __gutdbl_check_method__():
|
|
pass
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Doubled Methods
|
|
# ------------------------------------------------------------------------------
|