예제 #1
0
파일: Controls.cs 프로젝트: corefan/urho
		internal Controls (Connection connection, IntPtr handle)
		{
			this.connection = connection;
			this.handle = handle;
		}
예제 #2
0
파일: Controls.cs 프로젝트: corefan/urho
		public Controls ()
		{
			handle = Controls_Create ();
			connection = null;
		}
예제 #3
0
파일: Controls.cs 프로젝트: Zamir7/urho
 public Controls()
 {
     Runtime.ValidateObject(this);
     handle = Controls_Create ();
     connection = null;
 }