Fixed template

This commit is contained in:
2024-11-15 09:49:52 +01:00
parent 37d7d29658
commit 8ecd82eb4e
4 changed files with 12 additions and 7 deletions

View File

@@ -3,7 +3,11 @@ project(LotoStatek)
set(CMAKE_CXX_STANDARD 17)
add_executable(LotoStatek main.cpp)
add_executable(LotoStatek main.cpp
headers/Actor.h
headers/Plansza.h
sources/Actor.cpp
sources/Plansza.cpp)
if(WIN32)
set(SFML_ROOT "${CMAKE_SOURCE_DIR}/SFML")

View File

@@ -1,8 +1,9 @@
#ifndef OBJECT_MOVING_H
#define OBJECT_MOVING_H
#ifndef ACTOR_H
#define ACTOR_H
class Actor {
}
#endif //OBJECT_MOVING_H
};
#endif //ACTOR_H

View File

@@ -1 +1 @@
#include "object_moving.h"
#include "../headers/actor.h"

View File

@@ -1 +1 @@
#include "Plansza.h"
#include "../headers/Plansza.h"