rj-action-library/Runtime/Godot/Scenes/Objects/ExtResourceSFO.cs

15 lines
503 B
C#
Raw Normal View History

2024-07-25 05:40:31 +00:00
using Godot;
using System.Collections.Generic;
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
}
}