MyModule.hx 238 B

1234567891011
  1. class MyModule {
  2. public static function pubM() {}
  3. public static var pubV = 10;
  4. static function privM() {}
  5. static var privV = 10;
  6. }
  7. class OtherType {
  8. public static function pubM() {}
  9. public static var pubV = 10;
  10. }