mirror of
https://github.com/PorktoberRevolution/ReStocked
synced 2024-09-01 17:34:42 +00:00
10 lines
135 B
C#
10 lines
135 B
C#
|
using System;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace Restock.Constraints
|
||
|
{
|
||
|
public interface IConstraint
|
||
|
{
|
||
|
void Update();
|
||
|
}
|
||
|
}
|