mirror of
https://github.com/PorktoberRevolution/ReStocked
synced 2024-09-01 17:34:42 +00:00
8d8795c57d
Allows float and color properties to be set on actual parts now, not just fairings
11 lines
168 B
C#
11 lines
168 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Restock.MaterialModifiers
|
|
{
|
|
public interface IMaterialModifier
|
|
{
|
|
void Modify(Material material);
|
|
}
|
|
}
|