Schiene.h 241 B

12345678910111213
  1. #pragma once
  2. #include "GameObject.h"
  3. #include "Resource.h"
  4. class Schiene : public GameObject
  5. {
  6. private:
  7. int id;
  8. public:
  9. Schiene( ResourceRegistry *zResources, int id, int x, int y, int width, int height );
  10. int getId() const;
  11. };