godot-dlang ~master (2023-06-12T16:03:25Z)
Dub
Repo
GodotSignalT
godot
signal
Type-safe Signal wrapper around Godot's Signal
version(none)
struct
GodotSignalT (
string
Name
Args
...
) {
GodotSignal
_impl
;
enum
string
name
;
this
(GodotSignal sig);
typeof
(
this
)
opAssign
(GodotSignal value);
void
emit
(Args args);
}
Constructors
this
this
(GodotSignal sig)
Undocumented in source.
Members
Functions
emit
void
emit
(Args args)
Undocumented in source. Be warned that the author may not have intended to support it.
opAssign
typeof
(
this
)
opAssign
(GodotSignal value)
Undocumented in source. Be warned that the author may not have intended to support it.
Variables
_impl
GodotSignal
_impl
;
Undocumented in source.
name
enum
string
name
;
Undocumented in source.
Meta
Source
See Implementation
godot
signal
structs
GodotSignal
GodotSignalT
Type-safe Signal wrapper around Godot's Signal