blob: 12a6b280061d18f0d4086e62cfd0893cbcdb87d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "simulation/Tools.h"
//#TPT-Directive ToolClass Tool_Cool TOOL_COOL 1
Tool_Cool::Tool_Cool()
{
Identifier = "DEFAULT_TOOL_COOL";
Name = "COOL";
Colour = PIXPACK(0x00DDFF);
Description = "Cools particles";
}
int Tool_Cool::Perform(Simulation * sim, Particle * cpart, int x, int y, float strength)
{
if(!cpart)
return 0;
cpart->temp -= strength;
return 1;
}
Tool_Cool::~Tool_Cool() {}
|