User Story
Story
As a programmer
I want A class that allows characters to be drawn to specific points on a defined canvas/grid within the console
so that we have a standardized, simplified way to draw and manipulate 'graphics' in our games
Acceptance Criteria
(Rules or scenarios are acceptable formats.)
- The size of a canvas/grid is definable
- Characters can be assigned to points on the canvas/grid using coordinates (X,Y)
- Points that are not assigned a character instead default to a blank space character
- A single method call will draw all assigned characters to their associated point canvas/grid in the console screen
Scenario 1
Given The programmer defines point (1,1) as A, point (2,2) as B, and point (3,3) as C
when The draw command is issued
then the characters A,B, and C are displayed on the console in a diagnal line