BangleApps/apps/fontclock/fontclock.hand.js

10 lines
237 B
JavaScript

class Hand {
/**
* Pure virtual class for all Hand classes to extend.
* a hand class will have 1 main function
* moveTo which will move the hand to the given angle.
*/
moveTo(angle){}
}
module.exports = Hand;