You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
658 B
39 lines
658 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
using Sog;
|
|
|
|
using ProtoCSStruct;
|
|
|
|
|
|
namespace Version
|
|
{
|
|
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
try
|
|
{
|
|
CsBattleSimulatorRes res = new CsBattleSimulatorRes();
|
|
|
|
BattleInfoAll one = new BattleInfoAll();
|
|
|
|
res.BattleInfos.Add(ref one);
|
|
res.BattleInfos.Add(ref one);
|
|
|
|
|
|
}
|
|
catch(Exception ex)
|
|
{
|
|
Console.WriteLine(ex.Message);
|
|
}
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|
|
}
|
|
|