Files
BH3/Assets/Scripts/Assembly-CSharp/MoleMole/IFaceMatInfoProvider.cs
2025-08-13 09:26:42 +08:00

12 lines
165 B
C#

namespace MoleMole
{
public interface IFaceMatInfoProvider
{
int capacity { get; }
FaceMatInfo GetFaceMatInfo(int index);
string[] GetMatInfoNames();
}
}