RPG/include/Com.h

23 lines
270 B
C
Raw Normal View History

2024-02-22 00:32:57 -08:00
#pragma once
#include "Obj.h"
class Com : public Obj
{
public:
Com();
Com(std::string id);
Com(Com&& com) noexcept;
Com(const Com& com);
Com& operator=(Com&& com) noexcept;
Com& operator=(const Com& com);
virtual void Update();
virtual void Render();
};