skyline/.idea/fileTemplates/internal/C++ Class Header.h
◱ PixelyIon c37f350c02 Move from GPLv3 to LGPLv3 or later
Skyline has been licensed with GPLv3 but as we want to look into optional ads in the future, and that would require linking AdMob SDKs which are proprietary. So, we decided to move to LGPLv3 so we could keep that option open as a revenue stream. 

We've gathered consent from all contributors for the license change:
* PixelyIon - https://github.com/PixelyIon (Commit Author)
* Zephyren25 - https://github.com/zephyren25
* ByLaws - https://github.com/bylaws
* IvarWithoutBones - https://github.com/IvarWithoutBones
* Cyuubi - https://github.com/Cyuubi
* greggamesplayer - https://github.com/greggameplayer
2020-04-23 22:26:27 +05:30

15 lines
213 B
C++

#parse("Copyright Notice Header.h")
#pragma once
#if (${NAMESPACES_OPEN} == "")
namespace skyline {
#else
${NAMESPACES_OPEN}
#end
class ${NAME} {
};
#if (${NAMESPACES_OPEN} == "")
}
#else
${NAMESPACES_CLOSE}
#end