Entity IsPauseable Property Delta Engine Documentation

Namespace: DeltaEngine.Entities
Assembly: DeltaEngine (in DeltaEngine.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public virtual bool IsPauseable { get; }

Property Value

Type: Boolean
Remarks

Tests: Asteroids.Tests.PlayerShipTests
Examples

1 unit tests call DeltaEngine.Entities.Entity.IsPauseable
[Test, CloseAfterFirstFrame]
public void CreatedEntityIsPauseable()
{
    Assert.IsTrue(playerShip.IsPauseable);
}
See Also