Difference between revisions of "C++ Basics"

From TRCCompSci - AQA Computer Science
Jump to: navigation, search
(Basic Skills)
(SFML)
Line 10: Line 10:
  
 
=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.
 +
 
[[C++ Drawing to the screen]]
 
[[C++ Drawing to the screen]]
  

Revision as of 21:42, 13 June 2019

About C++

Introduction

Libraries

Basic Skills

Hello World

C++ Syntax

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.

C++ Drawing to the screen

Creating a Game

SimpleObject class

Game class