Lecture 5 - Slide 11 : 40
What about interfaces in C++?
Interfaces are well-known from Java and C#, but they do not appear in C++
gameobject.cs
A sample C# interface.
interface-like-class.cc
The C++ counterpart to the C# Interface.
interface-like-class-and-use.cc
A C++ class that 'implements the interface' and uses the resulting class.