#pragma once #include "GameObject.h" #include "Resource.h" class Schiene : public GameObject { private: int id; public: Schiene( ResourceRegistry *zResources, int id, int x, int y, int width, int height ); int getId() const; };