Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-2-capstone-design2
/
2013104125
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
표승우
2020-12-17 15:05:55 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
6790c5e7d4a9969c0c7069322033e5fbfd38955c
6790c5e7
1 parent
d1e0bebf
Upload new file
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
0 deletions
BoolEvent.cs
BoolEvent.cs
0 → 100644
View file @
6790c5e
//-----------------------------------------------------------------------
// <copyright file="BoolEvent.cs" company="Google Inc.">
// Copyright 2016 Google Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// </copyright>
//-----------------------------------------------------------------------
namespace
GoogleVR.VideoDemo
{
using
System
;
using
UnityEngine
;
using
UnityEngine.Events
;
/// <summary>A `UnityEvent` wrapper for boolean events.</summary>
[
Serializable
]
public
class
BoolEvent
:
UnityEvent
<
bool
>
{
}
}
Please
register
or
login
to post a comment