💿🐜 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.
 

32 lines
353 B

/**
* Abstract base class for tools. Tools are the only way for the user to interact with the world.
*/
class Tool
{
public:
private:
Vector3 translation;
};
class Forceps: public Tool
{
public:
private:
void pinch();
void release();
ModelInstance forcepsModelInstance;
};
class Brush: public Tool
{
public:
private:
void paint();
};