1 using System;
 2 using System.Collections;
 3 
 4 // this file has been semiautomatically generated from 'D:/work/soulng-project/soulng/parser/Match.hpp' using cpp2cm version 1.0.0
 5 
 6 // this file has been semiautomatically generated from 'D:/work/soulng-project/soulng/parser/Match.cpp' using cpp2cm version 1.0.0
 7 
 8 namespace System.Parsing
 9 {
10     public class Match
11     {
12         public Match(bool hit_) : 
13             hit(hit_)value(null)
14         {
15         }
16         public Match(bool hit_void* value_) : 
17             hit(hit_)value(value_)
18         {
19         }
20         public bool hit;
21         public void* value;
22     }
23 } // namespace System.Parsing