コード例 #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;
 }