mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-07 05:57:47 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
/* Copyright 2003-2009 ROBLOX Corporation, All Rights Reserved */
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "V8Datamodel/Mouse.h"
|
||||
#include "V8Datamodel/Workspace.h"
|
||||
namespace RBX {
|
||||
|
||||
extern const char *const sPlayerMouse;
|
||||
|
||||
class PlayerMouse : public DescribedNonCreatable<PlayerMouse, Mouse, sPlayerMouse>
|
||||
{
|
||||
private:
|
||||
typedef DescribedNonCreatable<PlayerMouse, Mouse, sPlayerMouse> Super;
|
||||
public:
|
||||
|
||||
PlayerMouse();
|
||||
~PlayerMouse();
|
||||
|
||||
TextureId getIcon() const;
|
||||
void setIcon(const TextureId& value);
|
||||
};
|
||||
|
||||
} // namespace
|
||||
Reference in New Issue
Block a user