초기 커밋.

This commit is contained in:
2026-04-01 20:20:09 +09:00
parent c286f362e5
commit fd1a2cba32
172 changed files with 43588 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LolDataRequestLib
{
/// <summary>
/// 클라이언트에게 타이머에 관련된 데이터를 콜백으로 드롭하기위한 인터페이스
/// </summary>
public interface IGameTimeEventDrop
{
void (int );
void (string , int _단위_초);
//void 아타칸리스폰정보(string 아타칸종류, int 남은시간_단위_초);
void (string , string , int _단위_초);
void (string , string , int _단위_초, int );
void (DataTable );
void (DataTable );
void (int , int );
void (DataTable );
}
}