rj-action-library/Runtime/WorldMap/WorldRegion.cs

18 lines
300 B
C#
Raw Permalink Normal View History

2024-12-01 17:07:41 +00:00
using Godot;
using System.Collections;
using System.Collections.Generic;
using System.Text.RegularExpressions;
namespace Rokojori
{
[Tool]
[GlobalClass]
public partial class WorldRegion:Node3D
{
[Export]
public int indexX = 0;
[Export]
public int indexZ = 0;
}
}