9 lines
60 B
C++
9 lines
60 B
C++
#pragma once
|
|
class Enemy
|
|
{
|
|
public:
|
|
Enemy();
|
|
~Enemy();
|
|
};
|
|
|