mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
18 lines
252 B
C++
18 lines
252 B
C++
/* Copyright 2003-2005 ROBLOX Corporation, All Rights Reserved */
|
|
|
|
#pragma once
|
|
|
|
#include "V8DataModel/MouseCommand.h"
|
|
|
|
namespace RBX
|
|
{
|
|
class ICancelableTool
|
|
{
|
|
|
|
public:
|
|
virtual shared_ptr<MouseCommand> onCancelOperation() = 0;
|
|
|
|
};
|
|
|
|
|
|
} //namespace
|