diff options
author | Serghei Cebotari <serghei@cebotari.ru> | 2023-11-13 22:40:23 +0300 |
---|---|---|
committer | Serghei Cebotari <serghei@cebotari.ru> | 2023-11-13 22:40:23 +0300 |
commit | 61a4fe90b89cc127444405597a2590f8537474e5 (patch) | |
tree | 44bfa66169cba2a7f2b79d959bf762b5e9bdeaa2 /MindBox.Lib/FlatShape.cs |
Initial commit
Diffstat (limited to 'MindBox.Lib/FlatShape.cs')
-rw-r--r-- | MindBox.Lib/FlatShape.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/MindBox.Lib/FlatShape.cs b/MindBox.Lib/FlatShape.cs new file mode 100644 index 0000000..aa43312 --- /dev/null +++ b/MindBox.Lib/FlatShape.cs @@ -0,0 +1,10 @@ +namespace MindBox.Lib; + +public abstract class FlatShape : ITwoDimensional +{ + protected double? _area; + public virtual double GetArea() + { + throw new NotImplementedException(); + } +} |