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

« back to all changes in this revision

Viewing changes to src/game/client/components/players.h

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2011-08-05 15:02:49 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20110805150249-1kai5j7v29m13dl3
Tags: 0.6.1+dfsg-1
* New upstream release.
* Repackage upstream tarball to remove pre-compiled libraries.
* Update watch file.
* Refresh patches.
* Drop patches that have been applied upstream: fix-ftbfs-hurd.patch,
  fix-ftbfs-kfreebsd.patch and gcc-endianness.patch.
* Use dh_link to create the DejaVuSans.ttf symlink.
* Query dpkg-buildflags instead of relying on dpkg-buildpackage to set the
  environment variables.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
#include <game/client/component.h>
6
6
 
7
7
class CPlayers : public CComponent
8
 
{       
 
8
{
9
9
        void RenderHand(class CTeeRenderInfo *pInfo, vec2 CenterPos, vec2 Dir, float AngleOffset, vec2 PostRotOffset);
10
10
        void RenderPlayer(
11
11
                const CNetObj_Character *pPrevChar,
12
12
                const CNetObj_Character *pPlayerChar,
13
13
                const CNetObj_PlayerInfo *pPrevInfo,
14
14
                const CNetObj_PlayerInfo *pPlayerInfo
15
 
        );      
 
15
        );
16
16
        void RenderHook(
17
17
                const CNetObj_Character *pPrevChar,
18
18
                const CNetObj_Character *pPlayerChar,
19
19
                const CNetObj_PlayerInfo *pPrevInfo,
20
20
                const CNetObj_PlayerInfo *pPlayerInfo
21
21
        );
22
 
        
 
22
 
23
23
public:
24
24
        virtual void OnRender();
25
25
};