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

21 lines
410 B
C#

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
{
}
}