mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 13:01:52 +00:00
14 lines
338 B
C#
14 lines
338 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>
|
|
[EngineClass("GlitchyEngine.Renderer.MeshComponent")]
|
|
public class Mesh : Component
|
|
{
|
|
|
|
}
|