forgot this
This commit is contained in:
Malloc of Kuzkycyziklistan 2017-04-27 15:44:57 -05:00
parent baa4d7b0e7
commit a6c96ef0b5
3 changed files with 10 additions and 5 deletions

View file

@ -116,6 +116,7 @@
</None> </None>
<None Include="packages.config"> <None Include="packages.config">
<SubType>Designer</SubType> <SubType>Designer</SubType>
<DependentUpon>App.config</DependentUpon>
</None> </None>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
@ -146,6 +147,7 @@
</Content> </Content>
<Content Include="Fodyweavers.xml"> <Content Include="Fodyweavers.xml">
<SubType>Designer</SubType> <SubType>Designer</SubType>
<DependentUpon>App.config</DependentUpon>
</Content> </Content>
</ItemGroup> </ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

View file

@ -9,6 +9,7 @@ using CircleScape.DAL;
namespace CircleScape { namespace CircleScape {
class Entrypoint { class Entrypoint {
static void Main(string[] args) { static void Main(string[] args) {
} }
} }
} }

View file

@ -15,11 +15,13 @@ namespace Kneesocks {
Pong = 0xA Pong = 0xA
}; };
public kOpcode Opcode { get; private set; } public kOpcode Opcode { get; set; }
public bool IsFinal { get; private set; } public bool IsFinal { get; set; }
public bool IsMasked { get; private set; } public bool IsMasked { get; set; }
public byte[] Mask { get; private set; } public byte[] Mask { get; set; }
public byte Reserved { get; private set; } public byte Reserved { get; set; }
public byte[] Content { get; private set; }
} }
} }