mirror of
https://github.com/PorktoberRevolution/ReStocked
synced 2024-09-01 17:34:42 +00:00
11 lines
168 B
C#
11 lines
168 B
C#
|
using System;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace Restock.MaterialModifiers
|
|||
|
{
|
|||
|
public interface IMaterialModifier
|
|||
|
{
|
|||
|
void Modify(Material material);
|
|||
|
}
|
|||
|
}
|