Files
pgs/Assets/ProCamera2D/Code/Core/IPreMover.cs

11 lines
187 B
C#
Raw Normal View History

2026-02-21 16:58:22 -08:00
using UnityEngine;
namespace Com.LuisPedroFonseca.ProCamera2D
{
public interface IPreMover
{
void PreMove(float deltaTime);
int PrMOrder { get; set; }
}
}