10 lines
178 B
C#
10 lines
178 B
C#
using Services;
|
|
using UnityEngine;
|
|
|
|
namespace Structs {
|
|
public struct FallMove {
|
|
public Vector2Int from;
|
|
public Vector2Int to;
|
|
public Gem gem;
|
|
}
|
|
} |