homing weapons more or less work now

This commit is contained in:
Chris Forbes
2009-12-06 21:19:02 +13:00
parent 5b970c499b
commit 3d457c397d
15 changed files with 211 additions and 61 deletions

View File

@@ -0,0 +1,11 @@
using System.Collections.Generic;
using OpenRa.Game.Graphics;
namespace OpenRa.Game.Effects
{
interface IEffect
{
void Tick();
IEnumerable<Tuple<Sprite, float2, int>> Render();
}
}