Kav/Geometry/Interfaces/IUVDrawable.cs

10 lines
111 B
C#
Raw Normal View History

2020-12-11 00:02:13 +00:00
using Kav.Data;
namespace Kav
{
public interface IUVDrawable
{
UVData UVData { get; }
}
}