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
|
||||
|
||||
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
|
||||
## 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
|
||||
## @experimental
|
||||
## 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
|
||||
## 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
|
||||
|
||||
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
|
||||
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
|
||||
## 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
|
||||
## 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
|
||||
|
||||
## 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
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue