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": {
|
"files.associations": {
|
||||||
"inputhandling.h": "c",
|
"isometricrenderer.h": "c"
|
||||||
"isometricmap.h": "c"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1,6 +1,6 @@
|
|||||||
#include "inputHandler.h"
|
#include "inputHandler.h"
|
||||||
#include "raylib.h"
|
#include "raylib.h"
|
||||||
#include "sprite.h"
|
#include "../sprite.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
@ -1,7 +1,7 @@
|
|||||||
#ifndef INPUTHANDLER_H_
|
#ifndef INPUTHANDLER_H_
|
||||||
#define INPUTHANDLER_H_
|
#define INPUTHANDLER_H_
|
||||||
#include "raylib.h"
|
#include "raylib.h"
|
||||||
#include "sprite.h"
|
#include "../sprite.h"
|
||||||
|
|
||||||
typedef struct InputHandler{
|
typedef struct InputHandler{
|
||||||
int pressed;
|
int pressed;
|
||||||
Loading…
Reference in new issue