blob: 0cf462f7996940c14b08f643b369090a032187e3 (
plain)
1
2
3
4
5
6
7
8
|
using Godot;
using System;
public partial class ExportedFields : GodotObject
{
// Note we use Array and not System.Array. This tests the generated namespace qualification.
[Export] private Int64[] _fieldEmptyInt64Array = Array.Empty<Int64>();
}
|