Skip to content

Commit

Permalink
Сотрудник компании и Человек
Browse files Browse the repository at this point in the history
  • Loading branch information
kartavec committed Sep 13, 2015
1 parent 13a38e1 commit b5dd688
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Snake/Snake/Emploee.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Snake
{
class Emploee : Human
{
public int pay; // зарплата
}
}
13 changes: 13 additions & 0 deletions Snake/Snake/Human.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Snake
{
class Human
{
public int age; // возраст
}
}
2 changes: 2 additions & 0 deletions Snake/Snake/Snake.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,10 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Emploee.cs" />
<Compile Include="Figure.cs" />
<Compile Include="HorizontalLine.cs" />
<Compile Include="Human.cs" />
<Compile Include="Point.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
Expand Down

0 comments on commit b5dd688

Please sign in to comment.