blob: d5b032bc7b9c1c2acaa8f73e98dba87860555ff6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System;
using System.Collections.Generic;
namespace XMainClient
{
internal class cleric_show
{
public static bool Do(List<XActor> actors)
{
return true;
}
}
}
|