Files
MovementTests/addons/forge/core/ForgeData.cs
Minimata 1d856fd937
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 26s
Create tag and build when new code gets to main / Export (push) Successful in 5m42s
Replicated the weapon flying tick setup using resources
2026-04-07 16:32:26 +02:00

16 lines
311 B
C#

// Copyright © Gamesmiths Guild.
using Godot;
using Godot.Collections;
namespace Gamesmiths.Forge.Godot.Core;
[Tool]
public partial class ForgeData : Resource
{
public const string ForgeDataResourcePath = "res://forge/forge_data.tres";
[Export]
public Array<string> RegisteredTags { get; set; } = [];
}