Implemented face_info* make_face_info_all

This commit is contained in:
CobaltXII
2018-12-28 21:55:48 -05:00
parent a85ef4cc3e
commit 73d525db99

View File

@@ -31,3 +31,10 @@ struct face_info
l_back = _l_back;
}
};
// Generates a face_info* where each all of the six faces correspond to the
// same layer.
face_info* make_face_info_all(float all)
{
return new face_info(all, all, all, all, all, all);
}