]> Dogcows Code - chaz/yoink/commitdiff
house-keeping
authorCharles McGarvey <chazmcgarvey@brokenzipper.com>
Tue, 24 Nov 2009 17:06:21 +0000 (10:06 -0700)
committerCharles McGarvey <chazmcgarvey@brokenzipper.com>
Tue, 24 Nov 2009 17:06:21 +0000 (10:06 -0700)
data/animations/AlienWarrior.lua
src/Character.hh
src/Heroine.hh
src/Moof/Script.hh
src/TitleLayer.hh

index b722e97e23de94d577e4e39a37c0ca09a053e53b..9f9f38c53757cb0ba8237981986360abba5c23b1 100644 (file)
@@ -85,7 +85,7 @@ DefineSequence("FlyStraightUp",
        }
 })
 
-DefineSequence("FlyStraightUp",
+DefineSequence("FlyHorizontally",
 {
        class = FLY,
        frames = {
index d70da88f6e1aa371e67271bc42539164b69a97b4..28e588b627da8ccc0b45b49dc80cbac1b37fc258 100644 (file)
@@ -43,7 +43,7 @@
 
 
 
-struct Character;
+class Character;
 typedef boost::shared_ptr<Character> CharacterP;
 
 
index 7169987708817234ac501698bbe4a655920f18ae..151362e06353c5f966b18e73471c409975ab4f2d 100644 (file)
@@ -36,7 +36,7 @@
 #include "Character.hh"
 
 
-struct Heroine;
+class Heroine;
 typedef boost::shared_ptr<Heroine> HeroineP;
 
 
index a1b536cf1a3d49786725c6ac8e07f57134ff84f6..df00619d69e59b4dafcf644d5782e2ab53ac1eac 100644 (file)
@@ -59,8 +59,10 @@ class Script;
 typedef boost::shared_ptr<Script> ScriptP;
 
 
-struct Script
+class Script
 {
+public:
+
        typedef boost::function<int(Script&)> Function;
 
        enum Type
@@ -794,6 +796,7 @@ struct Script
                lua_gc(mState, LUA_GCSETSTEPMUL, step);
        }
 
+
 private:
 
        Script(lua_State* state) :
index e3814b2cf22b82069ad10601a4a1d6a23bec9c43..887398816f5f6fc5e5a9f5946b6809066fa1a93e 100644 (file)
 class TitleLayer;
 typedef boost::shared_ptr<TitleLayer> TitleLayerP;
 
-struct TitleLayer : public Mf::Layer
+class TitleLayer : public Mf::Layer
 {
+public:
+
        static TitleLayerP alloc()
        {
                return TitleLayerP(new TitleLayer);
This page took 0.021664 seconds and 4 git commands to generate.