AcademyRPG.Lumberjack.TryGather C# (CSharp) 메소드

TryGather() 공개 메소드

public TryGather ( IResource resource ) : bool
resource IResource
리턴 bool
        public bool TryGather(IResource resource)
        {
            if (resource.Type == ResourceType.Lumber)
            {
                return true;
            }

            return false;
        }
    }