Difference between revisions of "C++ Basics"
(→SFML) |
(→SFML) |
||
Line 11: | Line 11: | ||
=SFML= | =SFML= | ||
SFML is a framework that uses C++, this is the most sensible way of creating a game in C++. Otherwise you will have to code every aspect of your game, including the mundane tasks such as listening for key presses or drawing a Sprite to the screen. | SFML is a framework that uses C++, this is the most sensible way of creating a game in C++. Otherwise you will have to code every aspect of your game, including the mundane tasks such as listening for key presses or drawing a Sprite to the screen. | ||
+ | |||
+ | [https://www.sfml-dev.org/ SFML website] | ||
+ | |||
+ | ==Tutorials== | ||
[[C++ Drawing to the screen]] | [[C++ Drawing to the screen]] |
Revision as of 13:06, 14 June 2019
Contents
About C++
Basic Skills
SFML
SFML is a framework that uses C++, this is the most sensible way of creating a game in C++. Otherwise you will have to code every aspect of your game, including the mundane tasks such as listening for key presses or drawing a Sprite to the screen.