Initial commit

This commit is contained in:
2026-04-03 00:22:39 -05:00
commit eca1e8c458
945 changed files with 218160 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
/*
ZPropertyBufferUpdateQueue.hpp
Author: James Russell <jcrussell@762studios.com>
Created: 9/17/2015
Purpose:
License:
Copyright 2015, 762 Studios.
*/
#pragma once
#ifndef _ZPROPERTYBUFFERUPDATEQUEUE_HPP
#define _ZPROPERTYBUFFERUPDATEQUEUE_HPP
#include "ZPropertyBufferUpdate.hpp"
class ZPropertyBufferUpdateQueue {
public:
// c'tor
ZPropertyBufferUpdateQueue();
// d'tor
~ZPropertyBufferUpdateQueue();
private:
};
#endif