Source code for simvx.core.graphics
"""Graphics: pure data structures (no GPU code).
Mesh, Material, Shader are backend-agnostic.
Backends (SDL3, Vulkan) provide rendering implementations.
"""
from .material import Material
from .mesh import Mesh
from .shader import Shader
__all__ = ["Mesh", "Material", "Shader"]