Skip to content
Snippets Groups Projects
Commit 560e5e5d authored by Eraser's avatar Eraser
Browse files

Implemented Cards Structure

parent d2f3e022
No related branches found
No related tags found
No related merge requests found
...@@ -3,4 +3,4 @@ project(magicCards) ...@@ -3,4 +3,4 @@ project(magicCards)
set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD 20)
add_executable(magicCards main.cpp aufgabe1.h aufgabe1.cpp) add_executable(magicCards main.cpp aufgabe1.h aufgabe1.cpp Cards.h)
Cards.h 0 → 100644
//
// Created by Eray düzenli on 13.04.23.
//
#pragma once
#include <string>
//Aufgabe Nr.2
struct Cards {
public:
std::string name;
std::string mana;
int cmc;
std::string type;
std::string count;
};
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment