mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
17 lines
134 B
C++
17 lines
134 B
C++
#pragma once
|
|
|
|
#include "../Common.h"
|
|
|
|
NS_BF_BEGIN;
|
|
|
|
template <typename T>
|
|
class Queue
|
|
{
|
|
public:
|
|
T* mBuffer;
|
|
|
|
|
|
public:
|
|
};
|
|
|
|
NS_BF_END;
|