From 5104111131ae4cbc3243cb12c50cc3aa1af13df5 Mon Sep 17 00:00:00 2001 From: Relintai Date: Fri, 7 Apr 2023 13:08:46 +0200 Subject: [PATCH] More setup work. --- game/downloader/Downloader.gd | 16 ++++++++++++++++ game/downloader/Downloader.tscn | 6 ++++++ game/downloader/wordpress/WordpressDownloader.gd | 16 ++++++++++++++++ .../wordpress/WordpressDownloader.tscn | 6 ++++++ 4 files changed, 44 insertions(+) create mode 100644 game/downloader/Downloader.gd create mode 100644 game/downloader/Downloader.tscn create mode 100644 game/downloader/wordpress/WordpressDownloader.gd create mode 100644 game/downloader/wordpress/WordpressDownloader.tscn diff --git a/game/downloader/Downloader.gd b/game/downloader/Downloader.gd new file mode 100644 index 0000000..1eccaec --- /dev/null +++ b/game/downloader/Downloader.gd @@ -0,0 +1,16 @@ +extends Node + + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" + + +# Called when the node enters the scene tree for the first time. +func _ready(): + pass # Replace with function body. + + +# Called every frame. 'delta' is the elapsed time since the previous frame. +#func _process(delta): +# pass diff --git a/game/downloader/Downloader.tscn b/game/downloader/Downloader.tscn new file mode 100644 index 0000000..8bff1e3 --- /dev/null +++ b/game/downloader/Downloader.tscn @@ -0,0 +1,6 @@ +[gd_scene load_steps=2 format=2] + +[ext_resource path="res://downloader/Downloader.gd" type="Script" id=1] + +[node name="Downloader" type="Node"] +script = ExtResource( 1 ) diff --git a/game/downloader/wordpress/WordpressDownloader.gd b/game/downloader/wordpress/WordpressDownloader.gd new file mode 100644 index 0000000..1eccaec --- /dev/null +++ b/game/downloader/wordpress/WordpressDownloader.gd @@ -0,0 +1,16 @@ +extends Node + + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" + + +# Called when the node enters the scene tree for the first time. +func _ready(): + pass # Replace with function body. + + +# Called every frame. 'delta' is the elapsed time since the previous frame. +#func _process(delta): +# pass diff --git a/game/downloader/wordpress/WordpressDownloader.tscn b/game/downloader/wordpress/WordpressDownloader.tscn new file mode 100644 index 0000000..2c1b018 --- /dev/null +++ b/game/downloader/wordpress/WordpressDownloader.tscn @@ -0,0 +1,6 @@ +[gd_scene load_steps=2 format=2] + +[ext_resource path="res://downloader/wordpress/WordpressDownloader.gd" type="Script" id=1] + +[node name="WordpressDownloader" type="Node"] +script = ExtResource( 1 )