13 lines
236 B
C++
13 lines
236 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
class Verkehrsmittel{
|
|
private:
|
|
int posX = 0;
|
|
int posY = 0;
|
|
int position[2] = {posX,posY};
|
|
public:
|
|
void bewege(int x, int y);
|
|
virtual std::string text();
|
|
};
|