This commit is contained in:
watrabi
2025-09-18 17:55:52 -04:00
commit 977f1ff4b8
15030 changed files with 17324420 additions and 0 deletions
+21
View File
@@ -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;
};
}