11 lines
370 B
C#
11 lines
370 B
C#
namespace UnityEngine
|
|
{
|
|
public class Object { }
|
|
public class Component : Object { }
|
|
public class Behaviour : Component { }
|
|
public class MonoBehaviour : Behaviour { }
|
|
public class ScriptableObject : Object { }
|
|
[System.AttributeUsage(System.AttributeTargets.Method)]
|
|
public class RuntimeInitializeOnLoadMethodAttribute : System.Attribute { }
|
|
}
|