~ubuntu-branches/ubuntu/maverick/stormbaancoureur/maverick

« back to all changes in this revision

Viewing changes to src-stormbaancoureur/vectortext.h

  • Committer: Bazaar Package Importer
  • Author(s): Miriam Ruiz
  • Date: 2007-08-22 07:53:07 UTC
  • Revision ID: james.westby@ubuntu.com-20070822075307-60hr9y5jyeeob6as
Tags: upstream-1.5.2
ImportĀ upstreamĀ versionĀ 1.5.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef VECTORTEXT_H
 
2
#define VECTORTEXT_H
 
3
 
 
4
#include <string>
 
5
 
 
6
extern void vt_init(float screenw, float screenh);
 
7
 
 
8
extern void vt_exit(void);
 
9
 
 
10
extern void vt_set_pos(float x, float y);
 
11
 
 
12
extern void vt_set_colour(float r, float g, float b, float a=1.0);
 
13
 
 
14
extern void vt_print(const std::string &text, bool centered);
 
15
 
 
16
 
 
17
#endif
 
18