Initial commit

This commit is contained in:
Frank A. Krueger 2017-06-12 11:45:24 -07:00
commit 972ccdde5a
5 changed files with 67 additions and 0 deletions

40
.gitignore vendored Normal file
View File

@ -0,0 +1,40 @@
# Autosave files
*~
# build
[Oo]bj/
[Bb]in/
packages/
TestResults/
# globs
Makefile.in
*.DS_Store
*.sln.cache
*.suo
*.cache
*.pidb
*.userprefs
*.usertasks
config.log
config.make
config.status
aclocal.m4
install-sh
autom4te.cache/
*.user
*.tar.gz
tarballs/
test-results/
Thumbs.db
# Mac bundle stuff
*.dmg
*.app
# resharper
*_Resharper.*
*.Resharper
# dotCover
*.dotCover

8
Ooui/Button.cs Executable file
View File

@ -0,0 +1,8 @@
using System;
namespace Ooui
{
public class Button : Element
{
}
}

6
Ooui/Element.cs Normal file
View File

@ -0,0 +1,6 @@
namespace Ooui
{
public class Element : Node
{
}
}

6
Ooui/Node.cs Normal file
View File

@ -0,0 +1,6 @@
namespace Ooui
{
public class Node
{
}
}

7
Ooui/Ooui.csproj Executable file
View File

@ -0,0 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard1.4</TargetFramework>
</PropertyGroup>
</Project>