Horizon
pool.hpp
1 #pragma once
2 #include <Python.h>
3 
4 namespace horizon {
5 class Pool;
6 }
7 
8 extern PyTypeObject PoolType;
9 
10 typedef struct {
11  PyObject_HEAD
12  /* Type-specific fields go here. */
13  horizon::Pool *pool;
14 } PyPool;
15 
16 void PoolType_init();
Stores objects (Unit, Entity, Symbol, Part, etc.) from the pool.
Definition: pool.hpp:22
Definition: pool.hpp:10