C++ Graphics Library in Visual Studio and Eclipse

前端 未结 4 2023
春和景丽
春和景丽 2021-01-22 08:58

Is there any Graphics library available in VS or Eclipse for C++? I am creating a PacMan Game so Which graphics Library should i Try?

4条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-22 09:37

    SDL is a C library, so if you've been using C++ for a while, you may find its simple interface cumbersome. However, it is the most widely-used library in this category.

    SDLmm is a C++ library wrapper for SDL that presents a friendly C++ face to SDL.

    SFML is a C++ media library with features similar to SDL. I rather quite like it, and it works very well.

提交回复
热议问题