mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-17 20:04:35 +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);
|
||
|
};
|
||
|
}
|