Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
StackAllocator.hpp
1#pragma once
2
3namespace Grindstone::Memory::Allocators {
12 public:
13 bool Initialize(size_t size);
14 bool Allocate(size_t size);
15 };
16}
A stack allocator where memory can only be deallocated in order (LIFO).
Definition StackAllocator.hpp:11