Ejemplo n.º 1
0
	void OnGUI () {
		if (GUILayout.Button("Click me", GUILayout.Width(500), GUILayout.Height(500))) {
			_StaticCaller.makeTests();
			
			a2uTest.Caller caller = new a2uTest.Caller("NOT static");
            caller.makeTests();
		}
	}
Ejemplo n.º 2
0
    void OnGUI()
    {
        if (GUILayout.Button("Click me", GUILayout.Width(500), GUILayout.Height(500)))
        {
            _StaticCaller.makeTests();

            a2uTest.Caller caller = new a2uTest.Caller("NOT static");
            caller.makeTests();
        }
    }
Ejemplo n.º 3
0
 // Use this for initialization
 void Start()
 {
     _StaticCaller = new a2uTest.Caller("Static");
 }
Ejemplo n.º 4
0
	// Use this for initialization
	void Start () {
		_StaticCaller = new a2uTest.Caller("Static");
	}