using System; using System.Collections.Generic; using System.Linq; using System.Text; using gr2lib.core.coretypes.implementation; namespace gr2lib.core.interfaces { public interface ITexture : INativePointer { FilePath FromFileName { get; set; } int TextureType { get; set; } int Width { get; set; } int Height { get; set; } int Encoding { get; set; } int SubFormat { get; set; } Layout Layout { get; set; } List Images { get; set; } IntPtr ExtendedData { get; set; } } }