mirror of
https://github.com/hobbesjaap/wellbeingapp.git
synced 2024-11-08 19:52:59 +00:00
22 lines
424 B
C#
22 lines
424 B
C#
using Godot;
|
|
using System;
|
|
|
|
public class start_screen : Node2D
|
|
{
|
|
// Declare member variables here. Examples:
|
|
// private int a = 2;
|
|
// private string b = "text";
|
|
|
|
// Called when the node enters the scene tree for the first time.
|
|
public override void _Ready()
|
|
{
|
|
|
|
}
|
|
|
|
// // Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
// public override void _Process(float delta)
|
|
// {
|
|
//
|
|
// }
|
|
}
|