Initial Commint & VSCode Task Configurations
This commit is contained in:
		
							
								
								
									
										5
									
								
								.vscode/settings.json
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								.vscode/settings.json
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,5 @@
 | 
			
		||||
{
 | 
			
		||||
    "files.associations": {
 | 
			
		||||
        "iostream": "cpp"
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										29
									
								
								.vscode/tasks.json
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										29
									
								
								.vscode/tasks.json
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,29 @@
 | 
			
		||||
{
 | 
			
		||||
	"version": "2.0.0",
 | 
			
		||||
	"tasks": [
 | 
			
		||||
		{
 | 
			
		||||
			"type": "shell",
 | 
			
		||||
			"label": "Build And Run Game",
 | 
			
		||||
			"command": "C:\\MinGW\\bin\\g++.exe",
 | 
			
		||||
			"args": [
 | 
			
		||||
				"-g",
 | 
			
		||||
				"${workspaceFolder}\\main.cpp",
 | 
			
		||||
				"-o",
 | 
			
		||||
				"${workspaceFolder}\\main.exe",
 | 
			
		||||
				"${workspaceFolder}\\SFML\\*.a",
 | 
			
		||||
				"&&",
 | 
			
		||||
				"${workspaceFolder}\\main.exe"
 | 
			
		||||
			],
 | 
			
		||||
			"options": {
 | 
			
		||||
				"cwd": "${workspaceFolder}"
 | 
			
		||||
			},
 | 
			
		||||
			"problemMatcher": [
 | 
			
		||||
				"$gcc"
 | 
			
		||||
			],
 | 
			
		||||
			"group": {
 | 
			
		||||
				"kind": "build",
 | 
			
		||||
				"isDefault": true
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
	]
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										4
									
								
								Engine.hpp
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								Engine.hpp
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,4 @@
 | 
			
		||||
#ifndef Engine
 | 
			
		||||
    #define Engine
 | 
			
		||||
    #include <iostream>
 | 
			
		||||
#endif
 | 
			
		||||
		Reference in New Issue
	
	Block a user