暫無描述

player_interaction.c 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /****************************************************************************
  2. * Copyright (C) 2015-2017 by the SotS Team *
  3. * *
  4. * This file is part of Sovereign of the Skies. *
  5. * *
  6. * Sovereign of the Skies is free software: you can redistribute it *
  7. * and/or modify it *
  8. * under the terms of the GNU Lesser General Public License as published *
  9. * by the Free Software Foundation, either version 3 of the License, or *
  10. * (at your option) any later version provided you include a copy of the *
  11. * licence and this header. *
  12. * *
  13. * Sovereign of the Skies is distributed in the hope that it will be *
  14. * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of *
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
  16. * GNU Lesser General Public License for more details. *
  17. * *
  18. * You should have received a copy of the GNU Lesser General Public *
  19. * License along with Sovereign of the Skies. *
  20. * If not, see <http://www.gnu.org/licenses/>. *
  21. ****************************************************************************/
  22. /**
  23. * @file player_interaction.c
  24. * @author Sturmvogel
  25. * @date 21 may 2017
  26. * @brief define tables for walking and behavior scripts
  27. */
  28. #include <types.h>
  29. extern const void *falling_script_baum_des_lebens;
  30. void* script_walk_table[] =
  31. {
  32. (void*)NULL
  33. };
  34. const void* behavior_walk_table[] =
  35. {
  36. (const void*)NULL,
  37. (const void*)NULL,
  38. (const void*)NULL,
  39. (const void*)NULL,
  40. (const void*)NULL,
  41. (const void*)NULL,
  42. (const void*)NULL,
  43. (const void*)NULL,
  44. (const void*)NULL,
  45. (const void*)NULL,
  46. (const void*)NULL,
  47. (const void*)NULL,
  48. (const void*)NULL,
  49. (const void*)NULL,
  50. (const void*)NULL,
  51. (const void*)NULL,
  52. (const void*)NULL,
  53. (const void*)NULL,
  54. (const void*)NULL,
  55. (const void*)NULL,
  56. (const void*)NULL,
  57. (const void*)NULL,
  58. (const void*)NULL,
  59. (const void*)NULL,
  60. (const void*)NULL,
  61. (const void*)NULL,
  62. (const void*)NULL,
  63. (const void*)NULL,
  64. (const void*)NULL,
  65. (const void*)NULL,
  66. (const void*)NULL,
  67. (const void*)NULL,
  68. (const void*)NULL,
  69. (const void*)NULL,
  70. (const void*)NULL,
  71. (const void*)NULL,
  72. (const void*)NULL,
  73. (const void*)NULL,
  74. (const void*)NULL,
  75. (const void*)NULL,
  76. (const void*)NULL,
  77. (const void*)NULL,
  78. (const void*)NULL,
  79. (const void*)NULL,
  80. (const void*)NULL,
  81. (const void*)NULL,
  82. (const void*)NULL,
  83. (const void*)NULL,
  84. (const void*)NULL,
  85. (const void*)NULL,
  86. (const void*)NULL,
  87. (const void*)NULL,
  88. (const void*)NULL,
  89. (const void*)NULL,
  90. (const void*)NULL,
  91. (const void*)NULL,
  92. (const void*)NULL,
  93. (const void*)NULL,
  94. (const void*)NULL,
  95. (const void*)NULL,
  96. (const void*)NULL,
  97. &falling_script_baum_des_lebens,
  98. &falling_script_baum_des_lebens,
  99. };