14 lines
322 B
C#
14 lines
322 B
C#
using LoaderCalculator.Data.Materials;
|
|
using StructureHelperLogics.Models.Materials;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace StructureHelperLogics.Models.Materials
|
|
{
|
|
public interface IHelperMaterial : ICloneable
|
|
{
|
|
IPrimitiveMaterial GetPrimitiveMaterial();
|
|
}
|
|
}
|