mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-06-05 02:49:57 +00:00
fix indentation, now using tabs
This commit is contained in:
@@ -13,18 +13,18 @@
|
||||
|
||||
namespace RAY
|
||||
{
|
||||
class Window;
|
||||
class Image;
|
||||
namespace Drawables {
|
||||
class IDrawable {
|
||||
public:
|
||||
virtual ~IDrawable() = default;
|
||||
class Window;
|
||||
class Image;
|
||||
namespace Drawables {
|
||||
class IDrawable {
|
||||
public:
|
||||
virtual ~IDrawable() = default;
|
||||
|
||||
virtual void drawOn(RAY::Window &window) = 0;
|
||||
protected:
|
||||
private:
|
||||
};
|
||||
}
|
||||
virtual void drawOn(RAY::Window &) = 0;
|
||||
protected:
|
||||
private:
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user