Schiene.h 166 B

1234567891011
  1. #pragma once
  2. #include "GameObject.h"
  3. class Schiene : public GameObject
  4. {
  5. private:
  6. int id;
  7. public:
  8. Schiene( int id, int x, int y, int width, int height );
  9. };