SpriteManager 2
 All Classes Functions Variables Enumerations Enumerator Properties
IUseCamera.cs
1 //-----------------------------------------------------------------
2 // Copyright 2011 Brady Wright and Above and Beyond Software
3 // All rights reserved
4 //-----------------------------------------------------------------
5 
6 
7 using UnityEngine;
8 using System.Collections;
9 
10 
11 // Generic interface for any object that has a "render camera"
12 public interface IUseCamera
13 {
14  void SetCamera();
15 
16  void SetCamera(Camera c);
17 
18  Camera RenderCamera
19  {
20  get;
21  set;
22  }
23 }