Codebase list pipenightdreams / 7d846159-61d9-43ec-8a45-37f377919c55/main src / pointerhorizontalbowl.h
7d846159-61d9-43ec-8a45-37f377919c55/main

Tree @7d846159-61d9-43ec-8a45-37f377919c55/main (Download .tar.gz)

pointerhorizontalbowl.h @7d846159-61d9-43ec-8a45-37f377919c55/mainraw · history · blame

/***************************************************************************
                          pointerhorizontalbowl.h  -  description
                             -------------------
    begin                : Mon Jan 1 1996
    copyright            : (C) 1996 by Waldemar Baraldi
    email                : baraldi@lacasilla.com.ar
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef POINTER_HORIZONTAL_BOWL_H
#define POINTER_HORIZONTAL_BOWL_H

#include "pointer.h"

class PointerHorizontalBowl: public Pointer{

  public:
    PointerHorizontalBowl():Pointer(){
      image_name=new Str("pbowl_h.png");
    }
};


#endif