예제 #1
0
파일: GwMatch.cs 프로젝트: Rohansi/GwSharp
        internal GwMatch(Api api, string id, GwWorld red, GwWorld blue, GwWorld green)
        {
            this.api = api;

            Id = id;
            Red = red;
            Blue = blue;
            Green = green;
        }
예제 #2
0
 public GwWatcher()
 {
     api = new Api();
 }
예제 #3
0
파일: GwWorld.cs 프로젝트: Rohansi/GwSharp
 internal GwWorld(Api api, string id, string name)
 {
     this.api = api;
     Id = id;
     Name = name;
 }
예제 #4
0
 public NameCache(Api api, string language)
 {
     this.api = api;
     this.language = language;
 }