Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public class ProductionUI : MonoBehaviour
  2. {
  3. Production production;
  4.  
  5.  
  6.  
  7. void Update () {
  8. Debug.Log(production);
  9. // do stuff to show ProductionUI
  10. }
  11.  
  12. public void activate(Production p)
  13. {
  14. production = p;
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement