House Drawing
As with the travel calculator, we want to get started quickly. So kick things off with a new folder, and a dotnet project called House Drawing.
-
Open your terminal, and set up your project
Terminal window # Move you your code projects foldercd ~/Documents/Code # or cd /c/Users/andrew/Documents/Code# Create and move into a folder for the projectmkdir HouseDrawingcd HouseDrawing# Create a blank dotnet projectdotnet new console# Add the SplashKit librarydotnet add package splashkit# Open in VS Codecode . -
Add the using directives to access the SplashKit and Convert code.
-
At this point you should just have these two lines of code.
using static System.Convert;using static SplashKitSDK.SplashKit;
-