Restructered project folders

This commit is contained in:
=
2026-04-28 11:09:47 +02:00
parent eccaec859f
commit 287cb4df78
18 changed files with 57 additions and 11 deletions
+28
View File
@@ -0,0 +1,28 @@
using Godot;
using GodotSteam;
public partial class SteamworksHandler : Node
{
public override void _Ready()
{
return;
SteamInitExStatus status = Steam.SteamInitEx(false).Status;
if (status != 0)
{
GD.Print("Steam not initialized!");
return;
}
GD.Print("Steam initialized!");
GD.Print("User: " + Steam.GetPersonaName());
}
public override void _Process(double delta)
{
Steam.RunCallbacks();
}
public override void _ExitTree()
{
Steam.SteamShutdown();
}
}