mirror of
https://github.com/Squareville/TestEventServer.git
synced 2026-01-01 09:19:31 -06:00
8 lines
133 B
C++
8 lines
133 B
C++
#pragma once
|
|
#include "BaseEnemyMech.h"
|
|
|
|
class VeMech : public BaseEnemyMech {
|
|
public:
|
|
void OnStartup(Entity *self) override;
|
|
};
|