mirror of
https://github.com/BluTac10/Xbox-Neo.git
synced 2026-05-22 10:55:34 +00:00
39 lines
687 B
C++
39 lines
687 B
C++
|
|
#include "stdafx.h"
|
|
#include "ParticleType.h"
|
|
|
|
ParticleType::ParticleType(const std::string& name, int id, bool overrideLimiter, int paramCount)
|
|
{
|
|
this->name = name;
|
|
this->id = id;
|
|
this->overrideLimiter = overrideLimiter;
|
|
this->paramCount = paramCount;
|
|
}
|
|
|
|
int ParticleType::getId() const
|
|
{
|
|
return id;
|
|
}
|
|
|
|
bool ParticleType::getOverrideLimiter() const
|
|
{
|
|
return overrideLimiter;
|
|
}
|
|
|
|
int ParticleType::getParamCount() const
|
|
{
|
|
return paramCount;
|
|
}
|
|
|
|
|
|
const ParticleType* ParticleType::getDefault()
|
|
{
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
const ParticleType* ParticleType::byId(int searchId)
|
|
{
|
|
|
|
return nullptr;
|
|
} |