historical/toontown-classic.git/panda/include/qtessGlobals.h

32 lines
709 B
C
Raw Normal View History

2024-01-16 11:20:27 -06:00
/**
* PANDA 3D SOFTWARE
* Copyright (c) Carnegie Mellon University. All rights reserved.
*
* All use of this software is subject to the terms of the revised BSD
* license. You should have received a copy of this license along
* with this source code in a file named "LICENSE."
*
* @file qtessGlobals.h
* @author drose
* @date 2003-10-13
*/
#ifndef QTESS_GLOBALS_H
#define QTESS_GLOBALS_H
#include "pandatoolbase.h"
/**
* Simply used as a namespace to scope some global variables for this program,
* set from the command line.
*/
class QtessGlobals {
public:
static bool _auto_place;
static bool _auto_distribute;
static double _curvature_ratio;
static bool _respect_egg;
};
#endif