oops
forgot this
This commit is contained in:
parent
baa4d7b0e7
commit
a6c96ef0b5
3 changed files with 10 additions and 5 deletions
|
@ -116,6 +116,7 @@
|
|||
</None>
|
||||
<None Include="packages.config">
|
||||
<SubType>Designer</SubType>
|
||||
<DependentUpon>App.config</DependentUpon>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
@ -146,6 +147,7 @@
|
|||
</Content>
|
||||
<Content Include="Fodyweavers.xml">
|
||||
<SubType>Designer</SubType>
|
||||
<DependentUpon>App.config</DependentUpon>
|
||||
</Content>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
|
|
|
@ -9,6 +9,7 @@ using CircleScape.DAL;
|
|||
namespace CircleScape {
|
||||
class Entrypoint {
|
||||
static void Main(string[] args) {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,11 +15,13 @@ namespace Kneesocks {
|
|||
Pong = 0xA
|
||||
};
|
||||
|
||||
public kOpcode Opcode { get; private set; }
|
||||
public bool IsFinal { get; private set; }
|
||||
public bool IsMasked { get; private set; }
|
||||
public byte[] Mask { get; private set; }
|
||||
public byte Reserved { get; private set; }
|
||||
public kOpcode Opcode { get; set; }
|
||||
public bool IsFinal { get; set; }
|
||||
public bool IsMasked { get; set; }
|
||||
public byte[] Mask { get; set; }
|
||||
public byte Reserved { get; set; }
|
||||
|
||||
|
||||
public byte[] Content { get; private set; }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue