001/**
002 * Copyright (c) 2008-2014 Ardor Labs, Inc.
003 *
004 * This file is part of Ardor3D.
005 *
006 * Ardor3D is free software: you can redistribute it and/or modify it 
007 * under the terms of its license which may be found in the accompanying
008 * LICENSE file or at <http://www.ardor3d.com/LICENSE>.
009 */
010
011package com.ardor3d.extension.shadow.map;
012
013import com.ardor3d.math.Vector3;
014
015public class MockPSSMCamera extends PSSMCamera {
016    public Vector3 getExtents() {
017        return _extents;
018    }
019}