mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
22 lines
420 B
C++
22 lines
420 B
C++
#include "Reflection/Reflection.h"
|
|
#pragma once
|
|
|
|
namespace RBX {
|
|
|
|
extern const char* const sPostEffect;
|
|
class PostEffect : public DescribedNonCreatable<PostEffect, Instance, sPostEffect>
|
|
{
|
|
|
|
public:
|
|
PostEffect(const char* name);
|
|
|
|
void setEnabled(bool value);
|
|
bool getEnabled() const { return enabled; }
|
|
private:
|
|
typedef DescribedNonCreatable<PostEffect, Instance, sPostEffect> Super;
|
|
bool enabled;
|
|
|
|
};
|
|
|
|
}
|