Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e_modules

Dir     : e17/apps/e_modules/src/modules/snow


Modified Files:
        e_mod_main.h 


Log Message:
Added new rain module from Ray Miller (kingrayray)
===================================================================
RCS file: 
/cvsroot/enlightenment/e17/apps/e_modules/src/modules/snow/e_mod_main.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- e_mod_main.h        24 Sep 2005 13:59:21 -0000      1.4
+++ e_mod_main.h        19 Oct 2005 04:36:29 -0000      1.5
@@ -2,33 +2,33 @@
 #define E_MOD_MAIN_H
 
 typedef struct _Config     Config;
-typedef struct _Snow       Snow;
-typedef struct _Snow_Flake Snow_Flake;
+typedef struct _Rain       Rain;
+typedef struct _Rain_Drop Rain_Drop;
 
 struct _Config
 {
-   int tree_count;
-   int flake_count;
-   int show_trees;
+   int cloud_count;
+   int drop_count;
+   int show_clouds;
 };
 
-struct _Snow
+struct _Rain
 {
    E_Module       *module;
    Evas_List      *cons;
    Evas           *canvas;
    Ecore_Animator *animator;
-   Evas_List      *trees;
-   Evas_List      *flakes;
+   Evas_List      *clouds;
+   Evas_List      *drops;
 
    E_Config_DD    *conf_edd;
    Config         *conf;
    Evas_Coord      width, height;
 };
 
-struct _Snow_Flake
+struct _Rain_Drop
 {
-   Evas_Object    *flake;
+   Evas_Object    *drop;
    double          start_time;
    int             speed;
 };




-------------------------------------------------------
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to