7 lines
74 B
C
7 lines
74 B
C
|
#pragma once
|
||
|
|
||
|
class IBattery
|
||
|
{
|
||
|
public:
|
||
|
virtual void SaveBattery() = 0;
|
||
|
};
|