summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ray.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/ray.h')
-rw-r--r--crawl-ref/source/ray.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/ray.h b/crawl-ref/source/ray.h
index 671ca0fa8a..cc7688571d 100644
--- a/crawl-ref/source/ray.h
+++ b/crawl-ref/source/ray.h
@@ -6,8 +6,11 @@
#ifndef RAY_H
#define RAY_H
+#include "fixary.h"
#include "geom2d.h"
+typedef FixedArray<bool,3,3> reflect_grid;
+
struct ray_def
{
geom::ray r;
@@ -20,7 +23,7 @@ struct ray_def
coord_def pos() const;
bool advance();
- void advance_and_bounce();
+ void bounce(const reflect_grid &rg);
void regress();
};