12 lines
281 B
C#
12 lines
281 B
C#
using ActiveProtect.Models;
|
|
using ActiveProtect.SimulationEnvironment;
|
|
|
|
namespace ActiveProtect.SimulationEnvironment
|
|
{
|
|
public interface ISimulationManager
|
|
{
|
|
Vector3D GetElementPosition(string elementId);
|
|
|
|
SimulationElement GetEntityById(string id);
|
|
}
|
|
} |