Advertisement
Guest User

Untitled

a guest
Apr 4th, 2020
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #pragma once
  2. #include <SFML/Graphics.hpp>
  3. #include "GLOBALS.h"
  4.  
  5. class slot {
  6. public:
  7.     slot();
  8.     void setup();
  9.     void Draw(sf::RenderWindow &window);
  10.     void SetPosition(float x, float y);
  11.     void SetOwner(Owner newOwner);
  12.     Owner GetOwner();
  13. private:
  14.     sf::CircleShape graphic;
  15.     Owner owner;
  16. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement