mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-02-06 05:30:19 +00:00
13 lines
179 B
C++
13 lines
179 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include "FuseTestEvent.h"
|
|
|
|
namespace Fuse {
|
|
class TestEvents {
|
|
public:
|
|
std::vector<TestEvent> events;
|
|
|
|
void read(std::ifstream& file);
|
|
};
|
|
} |