tied into renderer

This commit is contained in:
Chris Forbes
2009-10-18 22:40:41 +13:00
parent 253e70f108
commit 4aea82712f
2 changed files with 30 additions and 17 deletions

View File

@@ -3,12 +3,14 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using OpenRa.Game.GameRules;
using IjwFramework.Types;
using OpenRa.Game.Graphics;
namespace OpenRa.Game
{
class Bullet
{
readonly Player Owner;
public readonly Player Owner;
readonly Actor FiredBy;
readonly WeaponInfo Weapon;
readonly ProjectileInfo Projectile;
@@ -30,5 +32,6 @@ namespace OpenRa.Game
}
public void Tick(Game game, int dt) { /* todo */ }
public IEnumerable<Pair<Sprite, float2>> Render() { yield break; }
}
}