Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Felix Huther
Programmieren2
Commits
d3a379c6
Commit
d3a379c6
authored
Apr 27, 2022
by
Felix Huther
Browse files
fixed Problem with class include
parent
99fdbbe2
Changes
6
Hide whitespace changes
Inline
Side-by-side
Makefile
0 → 100644
View file @
d3a379c6
felix
:
git status
ls
\ No newline at end of file
Praktika/Pratika1/DungeonCrawlerBase/character.cpp
View file @
d3a379c6
#include
"character.h"
#include
<iostream>
Character
::
Character
(
std
::
string
&
texture
)
...
...
Praktika/Pratika1/DungeonCrawlerBase/character.h
View file @
d3a379c6
#ifndef CHARACTER_H
#define CHARACTER_H
#pragma once
#include
"tile.h"
//#include "tile.h"
#include
<string>
class
Tile
;
class
Character
{
public:
...
...
Praktika/Pratika1/DungeonCrawlerBase/level.h
View file @
d3a379c6
#ifndef LEVEL_H
#define LEVEL_H
#pragma once
#include
"character.h"
#include
"tile.h"
#include
"floor.h"
#include
"wall.h"
...
...
Praktika/Pratika1/DungeonCrawlerBase/tile.h
View file @
d3a379c6
#ifndef TILE_H
#define TILE_H
#pragma once
#include
<iostream>
#include
"position2D.h"
#include
"character.h"
class
Character
;
//class Character;
//inheritants to WALL PORTAL and FLOOR
class
Tile
{
...
...
test.json
0 → 100644
View file @
d3a379c6
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment