using Ghost.Core; using Ghost.Entities; using Ghost.Graphics.Core; using Ghost.Graphics.Services; namespace Ghost.Engine.Components; public struct MeshInstance : IComponent { public Handle mesh; public Identifier materialPalette; public RenderingLayerMask renderingLayerMask; public ShadowCastingMode shadowCastingMode; public bool staticShadowCaster; }