💿🐜 Antkeeper source code https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
181 B

  1. enum class ToolContext
  2. {
  3. BRUSH_PAINT,
  4. LENS_FOCUS,
  5. FORCEPS_PINCH,
  6. FORCEPS_RELEASE,
  7. FORCEPS_PICK_UP,
  8. FORCEPS_PUT_DOWN
  9. };
  10. class Tool
  11. {
  12. public:
  13. ToolContext gatherContext();
  14. };