Schiene.cpp 157 B

1234567
  1. #include "Schiene.h"
  2. Schiene::Schiene( int id, int x, int y, int width, int height )
  3. : GameObject( SCHIENE, x, y, width, height )
  4. {
  5. this->id = id;
  6. }