| 8 | BLUE_DEFINE( Tr2AtlasTexture ); |
| 9 | |
| 10 | IBlueResource* CreateTr2AtlasTextureRes( const wchar_t* name ) |
| 11 | { |
| 12 | Tr2AtlasTexturePtr p; |
| 13 | p.CreateInstance(); |
| 14 | return p.Detach(); |
| 15 | } |
| 16 | |
| 17 | BLUE_REGISTER_RESOURCE_EXTENSION( L"ddsatlas", CreateTr2AtlasTextureRes ); |
| 18 | BLUE_REGISTER_RESOURCE_EXTENSION( L"sddatlas", CreateTr2AtlasTextureRes ); |
nothing calls this directly
no test coverage detected