Skip to content

Commit

Permalink
Create printGUI on particleSystem
Browse files Browse the repository at this point in the history
  • Loading branch information
vandalo committed Mar 22, 2018
1 parent 23ab3da commit dd26a01
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions LCSEngine/ParticleSystemComponent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ ParticleSystemComponent::ParticleSystemComponent(GameObject* gameObject) : Compo
}


ParticleSystemComponent::~ParticleSystemComponent()
{
}
ParticleSystemComponent::~ParticleSystemComponent(){}

void ParticleSystemComponent::drawGUI(){}
1 change: 1 addition & 0 deletions LCSEngine/ParticleSystemComponent.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ class ParticleSystemComponent : public Component
public:
ParticleSystemComponent(GameObject* gameObject);
~ParticleSystemComponent();
void drawGUI();

public:
std::vector<Particle*> particles;
Expand Down

0 comments on commit dd26a01

Please sign in to comment.