You could try something like this:
\documentclass[border=5mm,tikz]{standalone}
\usepackage{mwe}
\usepackage{tikz}
\usetikzlibrary{shapes.misc,arrows,decorations.markings}
\tikzset{->-/.style={decoration={markings,
mark=at position 0.5 with {\arrow{stealth}}},
postaction={decorate}}
}
\begin{document}
\begin{tikzpicture}
\node[rounded rectangle, draw] (A) at (180:2) { \hspace*{20mm} };
\node[rounded rectangle, draw] (B) at (90:1.8) { \hspace*{20mm} };
\node[rounded rectangle, draw] (C) at (0:2) { \hspace*{20mm} };
\node[rounded rectangle, draw] (D) at (270:1.8) { \hspace*{20mm} };
\draw[->-](A) to [bend left] (B.south west);
\draw[->-](B.south east) to [bend left] (C);
\draw[->-](C) to [bend left] (D.north east);
\draw[->-](D.north west) to [bend left] (A);
\end{tikzpicture}
\end{document}
This produces:
