mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-07 22:07:48 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#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;
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user