/* core/slot.cc This file is part of the Osirion project and is distributed under the terms of the GNU General Public License version 2. */ #include "core/slot.h" #include "core/item.h" namespace core { Slot::Slot() { slot_item = 0; } Slot::Slot(const math::Vector3f &location) { slot_item = 0; slot_location.assign(location); } Slot::~Slot() { slot_item = 0; } } // namespace core