I'd like to use tikz 3d library, if possible, to easily draw this two windows on the roof. I read the posts concerning this library but I didn't understand how to do this.
\documentclass[tikz,border=5mm]{standalone}
%\usetikzlibrary{calc,3d}
\begin{document}
\begin{tikzpicture}[line join=round,
x={(30:1cm)},
y={(165:1cm)},
z={(0cm,1cm)}]
\draw (0,0,0) -- (2.5,0,0) -- (2.5,0,-1.3) -- (0,0,-1.3) -- cycle ;
\draw (0,0,0) -- (0,5,0) -- (0,5,-1.3) -- (0,0,-1.3) -- cycle ;
\draw (0,0,0) -- (1.25,.9,1.8) coordinate (H1) --(2.5,0,0) ;
\draw (0,5,0) -- (1.25,4.1,1.8) coordinate (H2) -- (1.25,.9,1.8) ;
\begin{scope}[shift={(0,2.7,1)}]
\draw (0,0,0)--(0,.5,0)--(.417,.5,.6)--(.417,0,.6) -- cycle ;
\end{scope}
\begin{scope}[shift={(0,.9,1)}]
\draw (0,0,0)--(0,.5,0)--(.417,.5,.6)--(.417,0,.6) --cycle ;
\end{scope}
\end{tikzpicture}
\end{document}

