Files

11 lines
188 B
C#
Raw Permalink 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; }
}
}