summaryrefslogtreecommitdiff
path: root/src/floor.hpp
blob: 6389dff9227908c4f1910b754b982e25927c9319 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

namespace silly::editor {
  class Floor {
    public:
      Floor(int width, int height) : width(width), height(height) {}
      ~Floor() = default;

      const int get_width() const;
      const int get_height() const;

    private:
      int width, height;
  };
}