GameFramework.Story.Commands.SyncMembersCommand.ExecCommand C# (CSharp) 메소드

ExecCommand() 보호된 메소드

protected ExecCommand ( StoryInstance instance, long delta ) : bool
instance StorySystem.StoryInstance
delta long
리턴 bool
        protected override bool ExecCommand(StoryInstance instance, long delta)
        {
            UserThread userThread = instance.Context as UserThread;
            if (null != userThread) {
                ulong guid = m_UserGuid.Value;
                userThread.SyncMembers(guid);
            }
            return false;
        }