mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
17 lines
249 B
C++
17 lines
249 B
C++
/* Copyright 2003-2007 ROBLOX Corporation, All Rights Reserved */
|
|
|
|
#pragma once
|
|
|
|
#include "rbx/Declarations.h"
|
|
|
|
namespace RBX {
|
|
|
|
class RBXInterface IModelModifier
|
|
{
|
|
public:
|
|
IModelModifier() {}
|
|
virtual ~IModelModifier() {}
|
|
};
|
|
|
|
} // namespace
|