~ubuntu-branches/ubuntu/trusty/teeworlds/trusty-updates

« back to all changes in this revision

Viewing changes to src/game/client/components/camera.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Gonéri Le Bouder
  • Date: 2009-04-12 02:32:37 UTC
  • mfrom: (3.2.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090412023237-ufmf1xn0rkjmx6f3
Tags: 0.5.1-2
* Fix the ouput of teeworlds-server --help with /bin/sh ->
  /bin/bash (Closes: #511600)
* Standard version 3.8.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <base/vmath.hpp>
 
2
#include <game/client/component.hpp>
 
3
 
 
4
class CAMERA : public COMPONENT
 
5
{       
 
6
public:
 
7
        vec2 center;
 
8
        float zoom;
 
9
 
 
10
        CAMERA();
 
11
        virtual void on_render();
 
12
};
 
13