Mercurial > hg > Game > Cerium
annotate Renderer/Test/aquarium.h @ 859:3f45bd7b910a draft
linda connection init
author | kazz <kazz@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 17 Jun 2010 04:46:25 +0900 |
parents | 9f6e29836095 |
children | 6c08c50c5f7a |
rev | line source |
---|---|
858 | 1 #include <math.h> |
2 #include <stdlib.h> | |
3 #include "SceneGraphRoot.h" | |
4 #include "Application.h" | |
5 #include "MainLoop.h" | |
859 | 6 typedef struct { |
7 const char *hostname; | |
8 int port; | |
9 } linda_t; | |
858 | 10 |
11 class aquarium : public Application { | |
12 public: | |
859 | 13 static linda_t linda_addr; |
14 static int linda; | |
15 static void linda_connect(); | |
858 | 16 MainLoopPtr init(Viewer *viewer, int screen_w, int screen_h); |
17 }; |