mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 11:15:15 +00:00
18 lines
No EOL
207 B
C++
18 lines
No EOL
207 B
C++
/**
|
|
* @file Config.h
|
|
* @brief VFX configuration.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace nn
|
|
{
|
|
namespace vfx
|
|
{
|
|
class Config
|
|
{
|
|
public:
|
|
virtual ~Config();
|
|
};
|
|
};
|
|
}; |