12 lines
234 B
C#
12 lines
234 B
C#
using Godot;
|
|
|
|
[GlobalClass]
|
|
public partial class CsvIndex : Resource
|
|
{
|
|
[Export]
|
|
public Godot.Collections.Array<StringName> Ids { get; set; } = new();
|
|
|
|
[Export]
|
|
public Godot.Collections.Array<string> Paths { get; set; } = new();
|
|
}
|