December 2018
Beginner to intermediate
668 pages
15h 30m
English
Add a class file named DisplacementVector.cs to the PacktLibrary project.
Modify the file, as shown in the following code, and note the following:
namespace Packt.CS7 { public struct DisplacementVector { public int X; public int Y; public DisplacementVector(int initialX, int initialY) { X = initialX; Y = initialY; } public ...Read now
Unlock full access