DoorKeeper/include/implem/tyler.inl
King_DuckZ e63aebe6e1 Some changes and the build is fine again.
This is a test version, design is still in progress.
2014-12-09 22:30:06 +01:00

12 lines
450 B
C++

namespace dk {
///------------------------------------------------------------------------
///------------------------------------------------------------------------
template <typename T, size_t D, typename S>
Tyler<T, D, S>::Tyler (const coords& parSize, streamer_type&& parStream) :
m_size(parSize),
m_tiles(parSize.x() * parSize.y()),
m_streamer(std::move(parStream))
{
assert(m_size.x() > 0 and m_size.y() > 0);
}
} //namespace dk