Compare commits
No commits in common. "e3cae438e933d21a8e1a2512e6eda02ef053070b" and "c8dd6e7cef27a0f369a1fb98174fd35bfc272033" have entirely different histories.
e3cae438e9
...
c8dd6e7cef
5
.ccls
5
.ccls
|
|
@ -1,5 +0,0 @@
|
||||||
# Headers
|
|
||||||
-Isrc/headers
|
|
||||||
-Isrc/ecs/headers
|
|
||||||
-Isrc/ecs/components/headers
|
|
||||||
-Icore/src/headers
|
|
||||||
|
|
@ -1,3 +1,2 @@
|
||||||
.ccls-cache
|
|
||||||
build
|
build
|
||||||
core
|
core
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Default",
|
||||||
|
"includePath": [
|
||||||
|
"src/**/headers",
|
||||||
|
"core/src/headers"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"version": 4
|
||||||
|
}
|
||||||
17
shell.nix
17
shell.nix
|
|
@ -1,17 +0,0 @@
|
||||||
with import <nixpkgs> {};
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
name = "env";
|
|
||||||
nativeBuildInputs = [
|
|
||||||
gnumake
|
|
||||||
gcc
|
|
||||||
pkg-config
|
|
||||||
];
|
|
||||||
buildInputs = [
|
|
||||||
SDL2
|
|
||||||
SDL2_image
|
|
||||||
];
|
|
||||||
shellHook = ''
|
|
||||||
export LD_LIBRARY_PATH=${pkgs.SDL2}/lib:${pkgs.SDL2_image}/lib:$LD_LIBRARY_PATH
|
|
||||||
export PKG_CONFIG_PATH=${pkgs.SDL2}/lib/pkgconfig:${pkgs.SDL2_image}/lib/pkgconfig:$PKG_CONFIG_PATH
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
@ -1,8 +1,6 @@
|
||||||
#ifndef GAME_H
|
#ifndef GAME_H
|
||||||
#define GAME_H
|
#define GAME_H
|
||||||
|
|
||||||
#include <stdbool.h>
|
|
||||||
|
|
||||||
#include "events.h"
|
#include "events.h"
|
||||||
#include "texture_manager.h"
|
#include "texture_manager.h"
|
||||||
#include "ecs.h"
|
#include "ecs.h"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue