josh cd4dc59bb4 added shapes/Makefile, shapes/Shape.h
git-svn-id: svn://anubis/gvsu@367 45c1a28c-8058-47b2-ae61-ca45b979098e
2009-01-16 22:21:55 +00:00

16 lines
191 B
C++

#ifndef SHAPE_H
#define SHAPE_H SHAPE_H
#include "util/Solver.h"
#include "util/Ray.h"
class Shape
{
public:
virtual Solver::Result intersect(const Ray & ray) = 0;
};
#endif