mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-06 13:47:48 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
#pragma once
|
||||
|
||||
#include "V8Tree/Verb.h"
|
||||
|
||||
namespace RBX
|
||||
{
|
||||
class StudioTool;
|
||||
class Workspace;
|
||||
|
||||
class StudioToolVerb
|
||||
:public Verb
|
||||
{
|
||||
protected:
|
||||
Workspace* workspace;
|
||||
StudioTool* studioTool;
|
||||
bool toggle;
|
||||
|
||||
public:
|
||||
StudioToolVerb(const char* name, StudioTool* studioTool, Workspace* workspace, bool toggle = true);
|
||||
/*override*/ bool isEnabled() const;
|
||||
/*override*/ bool isChecked() const;
|
||||
|
||||
/*override*/ void doIt(RBX::IDataState* dataState);
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user