using SM.OGL.Mesh;
namespace SM.Base.Objects
{
///
public class Mesh : GenericMesh
{
///
/// Contains vertex colors
///
public virtual VBO Color { get; }
///
/// While initializing, it will add the to the data index.
///
protected Mesh()
{
AttribDataIndex.Add(3, Color);
}
}
}