diff options
Diffstat (limited to 'lvz')
-rw-r--r-- | lvz/AEffect.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lvz/AEffect.h b/lvz/AEffect.h new file mode 100644 index 0000000..8d46cde --- /dev/null +++ b/lvz/AEffect.h @@ -0,0 +1,14 @@ +#ifndef __LVZ_AEFFECT_H +#define __LVZ_AEFFECT_H + +class AudioEffect; + +enum AEffectFlags { + effFlagsHasEditor +}; + +struct AEffect { + int flags; +}; + +#endif // __LVZ_AFFECT_H |