rokojori_action_library/Runtime/Godot/Scenes/Objects/ExtResourceSFO.cs

16 lines
530 B
C#
Raw Normal View History

2024-07-25 05:40:31 +00:00
using Godot;
using System.Collections.Generic;
2026-05-22 12:25:02 +00:00
using Rokojori.Extensions;
2024-07-25 05:40:31 +00:00
namespace Rokojori
{
public class ExtResourceSFO:SceneFileObject
{
public static readonly string headerType = "ext_resource";
public readonly SFHStringAttribute path = new SFHStringAttribute( "path" );
public readonly SFHStringAttribute uid = new SFHStringAttribute( "uid" );
public readonly SFHStringAttribute type = new SFHStringAttribute( "type" );
public readonly SFHStringAttribute id = new SFHStringAttribute( "id" );
2024-07-25 05:40:31 +00:00
}
}