mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
23 lines
382 B
C++
23 lines
382 B
C++
#include "ffx/EffectGlow.hpp"
|
|
#include "console/CVar.hpp"
|
|
|
|
bool FFXGlowCallback(CVar* var, const char* oldValue, const char* value, void* arg) {
|
|
// TODO
|
|
return true;
|
|
}
|
|
|
|
EffectGlow::EffectGlow() {
|
|
// TODO
|
|
|
|
CVar::Register(
|
|
"ffxGlow",
|
|
"full screen glow effect",
|
|
0x1,
|
|
"1",
|
|
&FFXGlowCallback,
|
|
GRAPHICS
|
|
);
|
|
|
|
// TODO
|
|
}
|