11 lines
217 B
C#
11 lines
217 B
C#
|
using Godot;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Rokojori
|
||
|
{
|
||
|
public class SceneFileHeader
|
||
|
{
|
||
|
public string type;
|
||
|
public List<SceneFileNamedValue> attributes = new List<SceneFileNamedValue>();
|
||
|
}
|
||
|
}
|