| 1812 | }; |
| 1813 | |
| 1814 | static void SheepModel_Register(void) { |
| 1815 | Model_Init(&sheep_model); |
| 1816 | sheep_model.maxVertices = SHEEP_BODY_VERTICES + SHEEP_FUR_VERTICES; |
| 1817 | Model_Register(&sheep_model); |
| 1818 | } |
| 1819 | |
| 1820 | static void NoFurModel_Register(void) { |
| 1821 | Model_Init(&nofur_model); |
no test coverage detected