mirror of
https://github.com/PorktoberRevolution/ReStocked
synced 2024-09-01 17:34:42 +00:00
drewcassidy
931d891644
New module is extendable and modular, allowing constraints to be run in the expected order without relying on possibly undefined behavior
10 lines
135 B
C#
10 lines
135 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Restock.Constraints
|
|
{
|
|
public interface IConstraint
|
|
{
|
|
void Update();
|
|
}
|
|
} |