14 lines
252 B
C#
14 lines
252 B
C#
|
using ET;
|
||
|
namespace ET
|
||
|
{
|
||
|
public static class Test
|
||
|
{
|
||
|
public static void Log(string str)
|
||
|
{
|
||
|
Game.EventSystem.Publish_Sync(new ET.EventType.TestLog
|
||
|
{
|
||
|
msg =str
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
}
|