Files
ihob/Assets/ProCamera2D/Runtime/Code/Core/IPostMover.cs

11 lines
188 B
C#
Raw Normal View History

2026-02-21 17:04:05 -08:00
using UnityEngine;
namespace Com.LuisPedroFonseca.ProCamera2D
{
public interface IPostMover
{
void PostMove(float deltaTime);
int PMOrder { get; set; }
}
}