mirror of
https://codeberg.org/StreamGraph/StreamGraph.git
synced 2024-11-13 19:49:55 +01:00
add license headers to deck classes
This commit is contained in:
parent
9dae9de560
commit
521253fd9e
11 changed files with 33 additions and 0 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
# (c) 2023-present Eroax
|
||||||
|
# (c) 2023-present Yagich
|
||||||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
class_name Connections
|
class_name Connections
|
||||||
|
|
||||||
static var obs_websocket
|
static var obs_websocket
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# (c) 2023-present Eroax
|
||||||
|
# (c) 2023-present Yagich
|
||||||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
class_name Deck
|
class_name Deck
|
||||||
## A deck/graph with nodes.
|
## A deck/graph with nodes.
|
||||||
##
|
##
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# (c) 2023-present Eroax
|
||||||
|
# (c) 2023-present Yagich
|
||||||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
class_name DeckHolder
|
class_name DeckHolder
|
||||||
## @experimental
|
## @experimental
|
||||||
## A static class holding references to all decks opened in the current session.
|
## A static class holding references to all decks opened in the current session.
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# (c) 2023-present Eroax
|
||||||
|
# (c) 2023-present Yagich
|
||||||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
class_name DeckNode
|
class_name DeckNode
|
||||||
## A node in a [Deck].
|
## A node in a [Deck].
|
||||||
##
|
##
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# (c) 2023-present Eroax
|
||||||
|
# (c) 2023-present Yagich
|
||||||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
class_name Logger
|
class_name Logger
|
||||||
|
|
||||||
enum LogType {
|
enum LogType {
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# (c) 2023-present Eroax
|
||||||
|
# (c) 2023-present Yagich
|
||||||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
extends Node
|
extends Node
|
||||||
class_name NodeDB_
|
class_name NodeDB_
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# (c) 2023-present Eroax
|
||||||
|
# (c) 2023-present Yagich
|
||||||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
class_name Port
|
class_name Port
|
||||||
## A data type representing a port of a [DeckNode].
|
## A data type representing a port of a [DeckNode].
|
||||||
##
|
##
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# (c) 2023-present Eroax
|
||||||
|
# (c) 2023-present Yagich
|
||||||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
class_name RendererPersistence
|
class_name RendererPersistence
|
||||||
## An interface for per-renderer persistent data.
|
## An interface for per-renderer persistent data.
|
||||||
##
|
##
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# (c) 2023-present Eroax
|
||||||
|
# (c) 2023-present Yagich
|
||||||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
class_name SearchProvider
|
class_name SearchProvider
|
||||||
|
|
||||||
## A class facilitating the searching of nodes.
|
## A class facilitating the searching of nodes.
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# (c) 2023-present Eroax
|
||||||
|
# (c) 2023-present Yagich
|
||||||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
class_name DeckType
|
class_name DeckType
|
||||||
|
|
||||||
enum Types{
|
enum Types{
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# (c) 2023-present Eroax
|
||||||
|
# (c) 2023-present Yagich
|
||||||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
extends DeckNode
|
extends DeckNode
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue