mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
24 lines
436 B
C++
24 lines
436 B
C++
/* Copyright 2003-2007 ROBLOX Corporation, All Rights Reserved */
|
|
|
|
#pragma once
|
|
|
|
#include "V8DataModel/Hopper.h"
|
|
#include "Script/IScriptFilter.h"
|
|
|
|
namespace RBX {
|
|
|
|
extern const char *const sBackpack;
|
|
class Backpack
|
|
: public DescribedCreatable<Backpack, Hopper, sBackpack>
|
|
, public IScriptFilter
|
|
{
|
|
private:
|
|
// IScriptOwner
|
|
/*override*/ bool scriptShouldRun(BaseScript* script);
|
|
|
|
public:
|
|
Backpack();
|
|
};
|
|
|
|
|
|
} // namespace
|