mirror of
https://github.com/mm201/GamestatsBase.git
synced 2026-04-22 23:17:47 -05:00
26 lines
672 B
C#
26 lines
672 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using GamestatsBase;
|
|
|
|
namespace Sample
|
|
{
|
|
/// <summary>
|
|
/// Summary description for dummy
|
|
/// </summary>
|
|
public class dummy : GamestatsHandler
|
|
{
|
|
public dummy()
|
|
: base("00000000000000000000", 0, 0, 0, 0, "dummy",
|
|
GamestatsRequestVersions.Version1, GamestatsResponseVersions.Version1, false, false)
|
|
{
|
|
|
|
}
|
|
|
|
public override void ProcessGamestatsRequest(byte[] request, System.IO.MemoryStream response, string url, int pid, HttpContext context, GamestatsSession session)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |