ReStocked/Source/Restock/Constraints/IConstraint.cs
drewcassidy 931d891644
Convert ModuleRestockLookAtConstrain into ModuleRestockConstraints
New module is extendable and modular, allowing constraints to be run in the expected order without relying on possibly undefined behavior
2020-01-30 18:37:27 -08:00

10 lines
135 B
C#

using System;
using UnityEngine;
namespace Restock.Constraints
{
public interface IConstraint
{
void Update();
}
}