blob: 4138e0160614d647f060261c544546efd4ba2029 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include "System.h"
namespace crepe {
class AISystem : public System {
public:
using System::System;
void update() override;
};
} // namespace crepe
|