Files
2026-04-18 03:46:45 +02:00

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;
}