コード例 #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
ファイル: GwWatcher.cs プロジェクト: Rohansi/GwSharp
 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
ファイル: NameCache.cs プロジェクト: Rohansi/GwSharp
 public NameCache(Api api, string language)
 {
     this.api = api;
     this.language = language;
 }