mirror of
https://github.com/muskit/H3VR-TNH-Quality-of-Life-Improvements.git
synced 2026-06-02 20:24:26 -07:00
10 lines
159 B
C#
10 lines
159 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MeatKit
|
|
{
|
|
public interface IValidatable
|
|
{
|
|
Dictionary<string, BuildMessage> Validate();
|
|
}
|
|
}
|