32 lines
426 B
C#
32 lines
426 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
using Godot;
|
|
|
|
namespace Rokojori;
|
|
|
|
[GlobalClass][Tool]
|
|
public partial class TestResource:Resource
|
|
{
|
|
/**
|
|
<summary>
|
|
The value of the other int
|
|
</summary>
|
|
*/
|
|
[Export]
|
|
public int otherValue = 1;
|
|
|
|
/**
|
|
<summary>
|
|
The value of the int
|
|
</summary>
|
|
*/
|
|
[Export]
|
|
public int intValue = 0;
|
|
|
|
|
|
|
|
[Export]
|
|
public TestResource testResource;
|
|
}
|