You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
717 B
C#
27 lines
717 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
using Duality;
|
|
using Duality.Input;
|
|
using Duality.Components;
|
|
using Duality.Drawing;
|
|
|
|
namespace CameraController
|
|
{
|
|
/// <summary>
|
|
/// This is a public interface that allows this sample project to
|
|
/// communicate with all its different CameraController implementations,
|
|
/// without knowing them personally. If you just want to pick one specific
|
|
/// CameraController for your project, you don't need this interface at all.
|
|
/// Just remove it.
|
|
/// </summary>
|
|
public interface ICameraController
|
|
{
|
|
/// <summary>
|
|
/// [GET / SET] The object which is followed by this controller.
|
|
/// </summary>
|
|
GameObject TargetObject { get; set; }
|
|
}
|
|
}
|