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