示例#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;
 }