Skip to content
This repository has been archived by the owner on Sep 18, 2022. It is now read-only.

Commit

Permalink
Changed ParticleOnUpdateDelegate name to ParticleOnUpdateAction
Browse files Browse the repository at this point in the history
  • Loading branch information
craftersmine committed Mar 18, 2019
1 parent 7c83117 commit 5cc6f5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions craftersmine.EtherEngine.Core/Objects/ParticleSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public sealed class ParticleSystem : GameObject
/// <summary>
/// Gets or sets particle on update behaviour
/// </summary>
public ParticleOnUpdateDelegate OnUpdateAction { get; set; }
public ParticleOnUpdateAction OnUpdateAction { get; set; }

/// <summary>
/// Creates new <see cref="ParticleSystem"/> instance with specified parameters
Expand Down Expand Up @@ -258,5 +258,5 @@ public Particle Clone()
/// Represents particle OnUpdate behaviour
/// </summary>
/// <param name="particle">Updating particle</param>
public delegate void ParticleOnUpdateDelegate(Particle particle);
public delegate void ParticleOnUpdateAction(Particle particle);
}

0 comments on commit 5cc6f5e

Please sign in to comment.