Files
glitchy-engine-beef/ScriptCore/Graphics/Mesh.cs
T

13 lines
284 B
C#

using GlitchyEngine.Core;
namespace GlitchyEngine.Graphics;
/// <summary>
/// Holds a reference to a Mesh.
/// Can be used in combination with a <see cref="MeshRenderer"/> on the same <see cref="Entity"/> to render the mesh.
/// </summary>
public class Mesh : Component
{
}