X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FMoof%2FCullable.hh;h=34a09b6a7ec3889d329a8053e5cec12868146525;hp=d543d0f07ecc040f6b744a00fcbb50ee5e16a024;hb=29e3d45f7bbbf31eadf793c41ff2b3d9c47b7539;hpb=16d1a05b0777e97a45c48e2874aa4e5cc791282e;ds=sidebyside diff --git a/src/Moof/Cullable.hh b/src/Moof/Cullable.hh index d543d0f..34a09b6 100644 --- a/src/Moof/Cullable.hh +++ b/src/Moof/Cullable.hh @@ -36,14 +36,16 @@ namespace Mf { /** - * Interface for anything that can be culled. This can include more than just - * frustrum culling. + * Interface for anything that can be culled. */ class Cullable { public: - virtual bool isVisible(const Camera& cam) = 0; + virtual bool isVisible(const Camera& cam) const + { + return true; + } };