CTT/Server/Hotfix/Game/System/User/OffLinePlayerBuffComponentS...

21 lines
410 B
C#
Raw Permalink Normal View History

2021-04-08 20:09:59 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace ET
{
public class OffLinePlayerBuffComponentAwakeSystem : AwakeSystem<OffLinePlayerBuffComponent>
{
public override void Awake(OffLinePlayerBuffComponent self)
{
OffLinePlayerBuffComponent.Instance = self;
}
}
public class OffLinePlayerBuffComponentSystem
{
}
}