fontmachineUtils.bmx 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. REM
  2. This file was created by the BLIde solution explorer and should not be modified from outside BLIde
  3. EndRem
  4. '------------------------------------------------------------------------------------------------------------------------------------------------------
  5. '#Region &HFF Program Info
  6. 'Program: Untitled
  7. 'Version: 0
  8. 'Subversion: 0
  9. 'Revision: 1
  10. '#EndRegion &HFF
  11. '------------------------------------------------------------------------------------------------------------------------------------------------------
  12. '#Region &H01 Compile Options
  13. Strict
  14. '#EndRegion &H01
  15. '------------------------------------------------------------------------------------------------------------------------------------------------------
  16. '#Region &H0F Framework
  17. Import brl.math
  18. Import brl.basic
  19. '#EndRegion &H0F
  20. '------------------------------------------------------------------------------------------------------------------------------------------------------
  21. '#Region &HAF Imports
  22. '#EndRegion &HAF
  23. '------------------------------------------------------------------------------------------------------------------------------------------------------
  24. '#Region &H04 MyNamespace
  25. 'LIB
  26. 'guid:84d6b1ac_20df_4ac4_b754_f05b5e01c02b
  27. Private
  28. TYPE z_84d6b1ac_20df_4ac4_b754_f05b5e01c02b_3_0 abstract 'Resource folder
  29. End Type
  30. TYPE z_blide_bg84d6b1ac_20df_4ac4_b754_f05b5e01c02b Abstract
  31. Const Name:string = "Untitled" 'This string contains the name of the program
  32. Const MajorVersion:Int = 0 'This Const contains the major version number of the program
  33. Const MinorVersion:Int = 0 'This Const contains the minor version number of the program
  34. Const Revision:Int = 1 'This Const contains the revision number of the current program version
  35. Const VersionString:String = MajorVersion + "." + MinorVersion + "." + Revision 'This string contains the assembly version in format (MAJOR.MINOR.REVISION)
  36. Const AssemblyInfo:String = Name + " " + MajorVersion + "." + MinorVersion + "." + Revision 'This string represents the available assembly info.
  37. ?win32
  38. Const Platform:String = "Win32" 'This constant contains "Win32", "MacOs" or "Linux" depending on the current running platoform for your game or application.
  39. ?
  40. ?MacOs
  41. Const Platform:String = "MacOs"
  42. ?
  43. ?Linux
  44. Const Platform:String = "Linux"
  45. ?
  46. ?PPC
  47. Const Architecture:String = "PPC" 'This const contains "x86" or "Ppc" depending on the running architecture of the running computer. x64 should return also a x86 value
  48. ?
  49. ?x86
  50. Const Architecture:String = "x86"
  51. ?
  52. ?debug
  53. Const DebugOn : Int = True 'This const will have the integer value of TRUE if the application was build on debug mode, or false if it was build on release mode
  54. ?
  55. ?not debug
  56. Const DebugOn : Int = False
  57. ?
  58. EndType
  59. Type z_My_84d6b1ac_20df_4ac4_b754_f05b5e01c02b Abstract 'This type has all the run-tima binary information of your assembly
  60. Global Application:z_blide_bg84d6b1ac_20df_4ac4_b754_f05b5e01c02b 'This item has all the currently available assembly version information.
  61. Global Resources:z_84d6b1ac_20df_4ac4_b754_f05b5e01c02b_3_0 'This item has all the currently available incbined files names and relative location.
  62. End Type
  63. Global My:z_My_84d6b1ac_20df_4ac4_b754_f05b5e01c02b 'This GLOBAL has all the run-time binary information of your assembly, and embeded resources shortcuts.
  64. Public
  65. '#EndRegion &H04 MyNamespace
  66. '------------------------------------------------------------------------------------------------------------------------------------------------------
  67. '#Region &H03 Includes
  68. Include "Check Version.bmx"
  69. Include "Drawing.bmx"
  70. Include "functions.bmx"
  71. '#EndRegion &H03