The-Powder-Toy/src/simulation/Snapshot.h
2013-01-07 17:54:10 -05:00

60 lines
989 B
C++

#pragma once
#include <vector>
#include "Particle.h"
class Snapshot
{
public:
std::vector<float> AirPressure;
std::vector<float> AirVelocityX;
std::vector<float> AirVelocityY;
std::vector<float> AmbientHeat;
std::vector<Particle> Particles;
std::vector<Particle> PortalParticles;
std::vector<int> WirelessData;
std::vector<float> GravVelocityX;
std::vector<float> GravVelocityY;
std::vector<float> GravValue;
std::vector<float> GravMap;
std::vector<unsigned char> BlockMap;
std::vector<unsigned char> ElecMap;
std::vector<float> FanVelocityX;
std::vector<float> FanVelocityY;
std::vector<playerst> stickmen;
std::vector<sign> signs;
Snapshot() :
AirPressure(),
AirVelocityX(),
AirVelocityY(),
AmbientHeat(),
Particles(),
PortalParticles(),
WirelessData(),
GravVelocityX(),
GravVelocityY(),
GravValue(),
GravMap(),
BlockMap(),
ElecMap(),
FanVelocityX(),
FanVelocityY(),
stickmen(),
signs()
{
}
virtual ~Snapshot()
{
}
};