mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
21 lines
270 B
C++
21 lines
270 B
C++
/* Copyright 2003-2008 ROBLOX Corporation, All Rights Reserved */
|
|
#include "Reflection/Reflection.h"
|
|
#pragma once
|
|
|
|
// Common base class for graphical effect "nuggets"
|
|
|
|
namespace RBX {
|
|
|
|
class Effect
|
|
{
|
|
|
|
public:
|
|
Effect();
|
|
virtual ~Effect();
|
|
|
|
|
|
|
|
};
|
|
|
|
} // namespace
|