14 lines
402 B
Zig
14 lines
402 B
Zig
//! ----------------------------------------------------
|
|
//! ----------------------------------------------------
|
|
|
|
//
|
|
// COMPONENTS
|
|
//
|
|
|
|
// --- POSITION ---
|
|
pub const Transform3D = @import("component/transform3D.zig");
|
|
pub const Transform2D = @import("component/transform2D.zig");
|
|
|
|
// --- STYLE ---
|
|
pub const Material = @import("component/material.zig");
|
|
pub const Mesh = @import("component/mesh.zig");
|