14 lines
177 B
C++
14 lines
177 B
C++
#pragma once
|
|
#include "src/Resource/Serializable.h"
|
|
|
|
namespace Nuake
|
|
{
|
|
class ParticleEmitter
|
|
{
|
|
public:
|
|
|
|
|
|
json Serialize();
|
|
bool Deserialize(const std::string& str);
|
|
};
|
|
} |