Source Code (Use browser search to find items of interest.)

Class Index

kabalone'BallPosition (./kdegames/kabalone/Ball.h:85)

class BallPosition {
 public:
  BallPosition(int xp,int yp, Ball* d);

  int x, y, actStep, actDir, actType;
  Ball* def;
  BallAnimation* actAnimation;
};


kabalone'BallPosition::BallPosition() (./kdegames/kabalone/Ball.cpp:203)

BallPosition::BallPosition(int xp,int yp, Ball* d)
{
  x=xp; 
  y=yp;
  def=d;
  actStep = -1;
  actType = ANIMATION_STOPPED;
  actAnimation=0;
}


/*  Class BallWidget */