aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system/ReplaySystem.h
blob: 15ef3fcd1d380f99d59a3138251dc14de9cf5c14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include "System.h"

namespace crepe {

class ReplaySystem : public System {
public:
	using System::System;

	void fixed_update() override;
};

}