YAPOG  0.0.1
Yet Another Pokemon Online Game
Padding.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_PADDING_HPP
2 # define YAPOG_PADDING_HPP
3 
4 # include "YAPOG/Macros.hpp"
6 
7 namespace yap
8 {
10  {
11  public:
12  Padding (uint l, uint r, uint b, uint t)
13  : left (l), right (r), bottom (b), top (t)
14  {
15  }
16 
18  : left (0), right (0), bottom (0), top (0)
19  {
20  }
21 
26  };
27 } //namespace yap
28 
29 #endif /* YAPOG_PADDING_HPP! */