소스 검색

Update Context.hx

Mark Knol 10 년 전
부모
커밋
9290ddc48f
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      std/haxe/remoting/Context.hx

+ 4 - 1
std/haxe/remoting/Context.hx

@@ -21,6 +21,9 @@
  */
 package haxe.remoting;
 
+/**
+    Allows communication between platforms. This is a shared API that can be called on the connection at the client code.
+*/
 class Context {
 
 	var objects : haxe.ds.StringMap<{ obj : Dynamic, rec : Bool }>;
@@ -58,4 +61,4 @@ class Context {
 		return ctx;
 	}
 
-}
+}