]> Dogcows Code - chaz/yoink/blobdiff - src/GameState.hh
fixed documentation about where to find licenses
[chaz/yoink] / src / GameState.hh
index 9583ff238af0aa1c470b23afb6d48f51a37ef6e6..76ecc34b37131ca0cd1a3126fbd0ef353dd95365 100644 (file)
@@ -1,47 +1,45 @@
 
-/*]  Copyright (c) 2009-2010, Charles McGarvey  [**************************
+/*]  Copyright (c) 2009-2011, Charles McGarvey  [*****************************
 **]  All rights reserved.
 *
-* vi:ts=4 sw=4 tw=75
-*
 * Distributable under the terms and conditions of the 2-clause BSD license;
 * see the file COPYING for a complete text of the license.
 *
-**************************************************************************/
+*****************************************************************************/
 
 #ifndef _GAMESTATE_HH_
 #define _GAMESTATE_HH_
 
-/**
- * @file GameState.hh
- * The data.
- */
-
 #include <string>
 #include <vector>
 
 #include <boost/shared_ptr.hpp>
 
-#include <Moof/Camera.hh>
-#include <Moof/Interpolator.hh>
-#include <Moof/Script.hh>
+#include <moof/camera.hh>
+#include <moof/interpolator.hh>
+#include <moof/script.hh>
 
 #include "Character.hh"
 #include "Heroine.hh"
 #include "Scene.hh"
 
 
+/**
+ * \file GameState.hh
+ * The data.
+ */
+
 struct GameState
 {
-       Mf::Script                                      script;
+       moof::script                    script;
        std::vector<std::string>        sceneList;
 
-       HeroineP                                        heroine;
-       SceneP                                          scene;
+       HeroineP                        heroine;
+       SceneP                          scene;
 
-       Mf::Lerp                                        interp;
+       moof::lerp_scalar               interp;
 
-       Mf::Camera                                      camera;
+       moof::camera                    camera;
 };
 
 
This page took 0.023085 seconds and 4 git commands to generate.