[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Usata-commits] Changes to usata2/src/usata.hpp
From: |
David Lau |
Subject: |
[Usata-commits] Changes to usata2/src/usata.hpp |
Date: |
Wed, 19 Jan 2005 01:28:48 -0500 |
Index: usata2/src/usata.hpp
diff -u usata2/src/usata.hpp:1.10 usata2/src/usata.hpp:1.11
--- usata2/src/usata.hpp:1.10 Tue Jan 18 00:12:08 2005
+++ usata2/src/usata.hpp Wed Jan 19 06:28:47 2005
@@ -10,7 +10,7 @@
// included in the software distribution, or visit
// http://www.fsf.org/licenses/gpl.html.
//
-// $Id: usata.hpp,v 1.10 2005/01/18 00:12:08 skunix Exp $
+// $Id: usata.hpp,v 1.11 2005/01/19 06:28:47 skunix Exp $
#ifndef USATA_USATA_HPP
#define USATA_USATA_HPP
@@ -20,8 +20,7 @@
namespace usata
{
- class TextureManager;
- class ImageManager;
+ class TextureMapManager;
class Object;
class SceneManager;
@@ -29,8 +28,7 @@
{
private:
void setup_video();
- //std::auto_ptr<TextureManager> texture_manager;
- std::auto_ptr<ImageManager> image_manager;
+ std::auto_ptr<TextureMapManager> image_manager;
std::auto_ptr<SceneManager> scene_manager;
bool quit;
public:
@@ -40,7 +38,7 @@
int loop();
SceneManager& scene() const { return *scene_manager.get(); }
- ImageManager& images()const{return *image_manager.get();}
+ TextureMapManager& images()const{return
*image_manager.get();}
};
}