summary refs log tree commit diff stats
path: root/src/renderer.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2015-03-12 13:48:10 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2015-03-12 13:48:10 -0400
commit1a392a79b0491c5acc766705698191ed2ed6c2e6 (patch)
tree787441b612f1aa03d777477fb32fdcb78c6a0197 /src/renderer.h
parentea0a959c2405511255080cae9f9558f2711a887f (diff)
downloadtherapy-1a392a79b0491c5acc766705698191ed2ed6c2e6.tar.gz
therapy-1a392a79b0491c5acc766705698191ed2ed6c2e6.tar.bz2
therapy-1a392a79b0491c5acc766705698191ed2ed6c2e6.zip
Added death to my game
Diffstat (limited to 'src/renderer.h')
-rw-r--r--src/renderer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/renderer.h b/src/renderer.h index 377b9ee..90ec101 100644 --- a/src/renderer.h +++ b/src/renderer.h
@@ -21,7 +21,7 @@ class Texture {
21 Texture& operator= (Texture tex); 21 Texture& operator= (Texture tex);
22 friend void swap(Texture& tex1, Texture& tex2); 22 friend void swap(Texture& tex1, Texture& tex2);
23 void fill(Rectangle loc, int r, int g, int b); 23 void fill(Rectangle loc, int r, int g, int b);
24 void blit(const Texture& src, Rectangle srcrect, Rectangle dstrect); 24 void blit(const Texture& src, Rectangle srcrect, Rectangle dstrect, double alpha = 1.0);
25 void renderScreen() const; 25 void renderScreen() const;
26 Rectangle entirety() const; 26 Rectangle entirety() const;
27 27