mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
/* Copyright 2003-2007 ROBLOX Corporation, All Rights Reserved */
|
||||
#include "stdafx.h"
|
||||
|
||||
#include "V8DataModel/PluginMouse.h"
|
||||
#include "V8DataModel/PluginManager.h"
|
||||
#include "V8World/ContactManager.h"
|
||||
#include "V8DataModel/PartInstance.h"
|
||||
#include "V8DataModel/Workspace.h"
|
||||
#include "V8World/World.h"
|
||||
|
||||
namespace RBX {
|
||||
|
||||
const char *const sPluginMouse = "PluginMouse";
|
||||
|
||||
REFLECTION_BEGIN();
|
||||
static Reflection::EventDesc<PluginMouse, void(shared_ptr<const Instances>)> evt_dragEnterEvent(&PluginMouse::dragEnterEventSignal, "DragEnter", "instances", Security::Plugin);
|
||||
REFLECTION_END();
|
||||
|
||||
|
||||
PluginMouse::PluginMouse()
|
||||
{
|
||||
}
|
||||
|
||||
PluginMouse::~PluginMouse()
|
||||
{
|
||||
}
|
||||
|
||||
void PluginMouse::fireDragEnterEvent(shared_ptr<const RBX::Instances> instances, shared_ptr<InputObject> input)
|
||||
{
|
||||
update(input);
|
||||
dragEnterEventSignal(instances);
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
||||
Reference in New Issue
Block a user