parent
201ed7f070
commit
4a1a2cb4e3
@ -1,17 +0,0 @@
|
||||
{
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Linux",
|
||||
"includePath": [
|
||||
"${workspaceFolder}/**"
|
||||
],
|
||||
"defines": [],
|
||||
"compilerPath": "/usr/bin/gcc",
|
||||
"cStandard": "gnu17",
|
||||
"cppStandard": "gnu++17",
|
||||
"intelliSenseMode": "linux-gcc-x64",
|
||||
"configurationProvider": "ms-vscode.makefile-tools"
|
||||
}
|
||||
],
|
||||
"version": 4
|
||||
}
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"C_Cpp.errorSquiggles": "Disabled",
|
||||
"files.associations": {
|
||||
"inputhandling.h": "c",
|
||||
"isometricmap.h": "c"
|
||||
"isometricrenderer.h": "c"
|
||||
}
|
||||
}
|
||||
@ -1,6 +1,6 @@
|
||||
#include "inputHandler.h"
|
||||
#include "raylib.h"
|
||||
#include "sprite.h"
|
||||
#include "../sprite.h"
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <math.h>
|
||||
@ -1,7 +1,7 @@
|
||||
#ifndef INPUTHANDLER_H_
|
||||
#define INPUTHANDLER_H_
|
||||
#include "raylib.h"
|
||||
#include "sprite.h"
|
||||
#include "../sprite.h"
|
||||
|
||||
typedef struct InputHandler{
|
||||
int pressed;
|
||||
Loading…
Reference in new issue