Schiene.h 137 B

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