13 lines
206 B
C#
Executable File
13 lines
206 B
C#
Executable File
using System.Collections.Generic;
|
|
using OpenRa.Graphics;
|
|
using OpenRa.Traits;
|
|
|
|
namespace OpenRa.Effects
|
|
{
|
|
public interface IEffect
|
|
{
|
|
void Tick();
|
|
IEnumerable<Renderable> Render();
|
|
}
|
|
}
|