00001 /*************************************************************************** 00002 *cr 00003 *cr (C) Copyright 1995-2019 The Board of Trustees of the 00004 *cr University of Illinois 00005 *cr All Rights Reserved 00006 *cr 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * RCS INFORMATION: 00011 * 00012 * $RCSfile: P_GrabTool.h,v $ 00013 * $Author: johns $ $Locker: $ $State: Exp $ 00014 * $Revision: 1.26 $ $Date: 2019/01/17 21:21:00 $ 00015 * 00016 ***************************************************************************/ 00017 00019 00024 #include "P_Tool.h" 00025 class GrabTool : public Tool { 00026 public: 00027 GrabTool(int id, VMDApp *, Displayable *); 00028 virtual void do_event(); 00029 00030 const char *type_name() const { return "grab"; } 00031 private: 00032 int targetting; 00033 }; 00034 00035