Liberi
An exergame built for kids with CP!
ScriptAttribute.cs
1 using System;
2 
7 public enum ScriptRole
8 {
12  Server,
16  Client,
20  Owner,
24  Secure,
28  ServerOwner,
32  ClientOwner,
36  Logic,
40  View,
45  OwnerView,
50  HumanBrain,
55  BotBrain,
56 }
57 
61 [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
62 public class ScriptAttribute : Attribute
63 {
67  public ScriptRole ScriptRole
68  {
69  get { return _scriptRole; }
70  }
71 
72  ScriptRole _scriptRole;
73 
78  public ScriptAttribute (ScriptRole scriptRole)
79  {
80  _scriptRole = scriptRole;
81  }
82 }
ScriptAttribute(ScriptRole scriptRole)
Marks a MonoBehaviour as a game script.
Marks a MonoBehaviour as a game script with a given script role.