9 lines
231 B
C#
9 lines
231 B
C#
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public interface IProjectileManager
|
|
{
|
|
float ComputeProjectileTravelTime(Agent source, Agent target);
|
|
|
|
void FireProjectile(Agent source, Agent target);
|
|
}
|
|
} |