PuzzleSolver/Source/header/input.h
2018-01-07 20:08:50 +01:00

58 lines
1.0 KiB
C++
Executable File

//
// Created by mpapa on 05.12.2017.
//
#pragma once
#include <cstdint>
#include "../functions/AbstractionLayers/Layer1/AbstractionLayer_1_Properties.h"
#include "../functions/AbstractionLayers/DestructionPower/DestructionPower_Properties.h"
class LayerContainer;
class Part
{
public:
Part() : m_partID(0), m_numOfRotations(0), set(false)
{}
~Part() = default;
int32_t GetPartID () const
{
return m_partID;
}
void SetPartID(const int32_t partID)
{
m_partID = partID;
}
uint8_t GetNumOfRotations () const
{
return m_numOfRotations;
}
void SetNumOfRotations(const uint8_t numOfRotations)
{
m_numOfRotations = numOfRotations;
}
void print(){m_a1.print();}
bool set;
AbstractionLayer_1_Properties m_a1;
private:
int32_t m_partID;
uint8_t m_numOfRotations;
};
class coor
{
public:
unsigned int col, row;
coor (unsigned int newcol,unsigned int newrow): col(newcol), row(newrow)
{}
};