diff --git a/include/ResourceManaged.hpp b/include/ResourceManaged.hpp new file mode 100644 index 0000000..062ccda --- /dev/null +++ b/include/ResourceManaged.hpp @@ -0,0 +1,137 @@ +//This file is part of Photon (http://photon.sourceforge.net) +//Copyright (C) 2004-2005 James Turk +// +// Author: +// James Turk (jpt2433@rit.edu) +// +// Version: +// $Id: ResourceManaged.hpp,v 1.1 2005/03/02 08:37:40 cozman Exp $ + +#ifndef PHOTON_RESOURCEMANAGED_HPP +#define PHOTON_RESOURCEMANAGED_HPP + +#include + +#include "ResourceManager.hpp" + +namespace photon +{ + +// Class: ResourceManaged +// Base template class, to be used as a base from which classes which have +// resources that can be controlled, such as textures and music, can be +// derived. Resource managed classes rely on a . +// +// Children: +// , +// +//