選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

47 行
796 B

  1. //
  2. // Lol Engine
  3. //
  4. // Copyright: (c) 2010-2011 Sam Hocevar <sam@hocevar.net>
  5. // This program is free software; you can redistribute it and/or
  6. // modify it under the terms of the Do What The Fuck You Want To
  7. // Public License, Version 2, as published by Sam Hocevar. See
  8. // http://www.wtfpl.net/ for more details.
  9. //
  10. //
  11. // The Dict class
  12. // --------------
  13. //
  14. #if !defined __LOL_DICT_H__
  15. #define __LOL_DICT_H__
  16. #include "entity.h"
  17. namespace lol
  18. {
  19. class DictData;
  20. class Dict
  21. {
  22. public:
  23. Dict();
  24. ~Dict();
  25. int MakeSlot(char const *name);
  26. void RemoveSlot(int slotid);
  27. void RemoveSlot(Entity *entity);
  28. void SetEntity(int slotid, Entity *entity);
  29. Entity *GetEntity(int slotid);
  30. private:
  31. DictData *data;
  32. };
  33. } /* namespace lol */
  34. #endif // __LOL_DICT_H__