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" );
|
2025-02-12 16:48:15 +00:00
|
|
|
public readonly SFHStringAttribute id = new SFHStringAttribute( "id" );
|
2024-07-25 05:40:31 +00:00
|
|
|
}
|
|
|
|
}
|