mirror of
https://github.com/neoStudiosLCE/neoLegacy.git
synced 2026-05-22 01:15:17 +00:00
23 lines
513 B
C++
23 lines
513 B
C++
|
|
#pragma once
|
|
#include <string>
|
|
|
|
class ParticleType
|
|
{
|
|
private:
|
|
std::string name;
|
|
int id;
|
|
bool overrideLimiter;
|
|
int paramCount;
|
|
|
|
|
|
public:
|
|
ParticleType(const std::string& name, int id, bool overrideLimiter, int paramCount);
|
|
|
|
int getId() const;
|
|
bool getOverrideLimiter() const;
|
|
int getParamCount() const;
|
|
|
|
static const ParticleType* byId(int id);
|
|
static const ParticleType* getDefault();
|
|
}; |