using Microsoft.Xna.Framework; namespace Kav { public class Model { public Mesh[] Meshes { get; } public Matrix Transform { get; set; } // TODO: this should probably be a wrapper class public Model(Mesh[] meshes, Matrix transform) { Meshes = meshes; } } }