#include "Schiene.h" Schiene::Schiene( int id, int x, int y, int width, int height ) : GameObject( SCHIENE, x, y, width, height ) { this->id = id; } int Schiene::getId() const { return id; }