aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/core/je_version.h
blob: 6a91797437915890bfa6c23ab6b2d2df8e4b36b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef __JE_CORE_VERSION_H
#define __JE_CORE_VERSION_H

namespace JinEngine
{
    namespace Core
    {

        ///
        /// Get version of Jin.
        ///
        /// @return Version of Jin.
        ///
        int getVersion();

        ///
        /// Get author of Jin.
        /// 
        /// @return Author of Jin.
        ///
        int getAuthor();

    } // namespace Core
} // namespace JinEngine

#endif