Difference between revisions of "HPL3/Scripting/Scripting Guide/Enums"
< HPL3
Jump to navigation
Jump to search
Line 5: | Line 5: | ||
== How to Use Enums == | == How to Use Enums == | ||
− | Enums are mostly required as a parameter for existing HPL3 functions. One of the most common function which uses an enum is <code>Music_Play<code>. For example: | + | Enums are mostly required as a parameter for existing HPL3 functions. One of the most common function which uses an enum is <code>Music_Play</code>. For example: |
Revision as of 23:08, 14 August 2020
Enum is a user defined datatype in HPL3. It is used to assign names to the integral constants which makes a script easy to read and maintain. The keyword “enum” is used to declare an enumeration.
How to Use Enums
Enums are mostly required as a parameter for existing HPL3 functions. One of the most common function which uses an enum is Music_Play
. For example: