File size: 378 Bytes
24b81cb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
// WIP
class Explosion
{
void SpawnEffect( vector position, Effect eff, vector pos, vector ori)
{
SEffectManager.PlayInWorld(eff, pos);
}
}
class ExplosionTest : House
{
ref Timer m_Delay;
void ExplosionTest()
{
m_Delay = new Timer;
m_Delay.Run(1, this, "ExplodeNow", null, false);
}
void ExplodeNow()
{
Explode(DT_EXPLOSION, "Explosion_NonLethal");
}
}
|