Files
2025-12-18 03:01:20 +08:00

10 lines
178 B
C#

using Services;
using UnityEngine;
namespace Structs {
public struct FallMove {
public Vector2Int from;
public Vector2Int to;
public Gem gem;
}
}