• This project
    • Loading...
  • Sign in

노현종 / 2018-1-Capstone1-VulnNotti

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • Capstone1-VulnNotti
  • Vulnerablity_DB
  • Flicker
  • IRenderable.cs
  • 노현종's avatar
    VulnUserCodeAnalyzer 수정 · a57c6fb8
    a57c6fb8 Browse Directory
    노현종 authored 2018-06-07 11:49:05 +0900
IRenderable.cs 226 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
using System;

namespace Flicker
{
	public interface IRenderable
	{
		Renderer AssociatedRenderer { get; set; }

		void Render(bool selected);

		void HandleKey(ConsoleKeyInfo key);

		void Select();

		void Destroy();
	}
}