#pragma once#include<gfx/scene/model.h>#include"scene_memory.h"/// Model.typedefstructModel{node_idxroot;node_idxparent;// Parent SceneNode.}Model;/// Create a new model.Model*gfx_make_model(constSceneNode*root);/// Destroy the model.voidgfx_del_model(Model**);